CompTIACompTIA
XK0-005 · Question #1858
XK0-005 Question #1858: Real Exam Question with Answer & Explanation
The correct answer is D: ./configure. This script configures the source code for the system, checking for dependencies, environment variables, and the system architecture to prepare for the compilation make - This command compiles the source code into binaries. It uses the Makefile (generated by ./configure) to creat
System Management
Question
Which of the following command sequences is used to install Linux software directly from source code? ./config A. ./compile ./copy
Options
- Bunzip
- C./unpack
- D./configure
Explanation
- This script configures the source code for the system, checking for dependencies, environment variables, and the system architecture to prepare for the compilation make - This command compiles the source code into binaries. It uses the Makefile (generated by ./configure) to create the necessary build files. make install - This command installs the compiled binaries and other necessary files to their appropriate locations on the system (e.g., /usr/local/bin). This sequence (./configure, make, make install) is the standard way to install software from source in Linux.
Topics
#Linux software installation#Compiling from source#GNU build system#./configure
Community Discussion
No community discussion yet for this question.