CompTIA Linux+ (XK0-004) — Question 270
A technician needs to install the package.tar.gz file, which contains the source code of custom software. The technician downloaded the file in /tmp. Which of the following commands should the technician use to install the executable? (Choose three.)
Answer options
- A. tar
- B. gunzip
- C. ldd
- D. configure
- E. apt
- F. make
- G. yum
- H. bzip2
- I. pip
Correct answer: A, D, F
Explanation
The correct commands to install the software from source are 'tar' to extract the files, 'configure' to prepare the build environment, and 'make' to compile the source code into an executable. The other options like 'gunzip', 'ldd', 'apt', 'yum', 'bzip2', and 'pip' are not necessary for this specific installation process.