In Linux, which of these is the final step for installing software from a source file using the terminal?
- install pkg
- sudo install <path>
- make install
- ./configure
EXPLANATION
Steps are as follows:
1. Unzip file
2. Navigate to it within the terminal using cd
3. Type './configure'
4. Type 'make'
5. Type 'make install'
0 comments:
Post a Comment