

InterviewSolution
Saved Bookmarks
1. |
Solve : New Linux User, Compiling GNU software? |
Answer» Hi All....! Hi All....!if you download rpm files, at the COMMAND line (typical), Code: [Select]rpm -ivf <package name> check your rpm man page for more options. If there is GUI rpm package manager from your DISTRIBUTION, then you can also use that. If you want to compile your own source code, USUALLY C programs, then download from the source(usually its in tar.gz or zip format.). Extract them out, for example if you have tar.gz file, you can use Code: [Select]tar zxvf <filename.tar.gz> then go into the untarred directory, typically, to compile the source Code: [Select]./configure #use --help for more options make make install check the documentatoin of the source for more installation instructions. |
|