i'm newbie in Ubuntu. after installation Ubuntu 14.04 , i want to install firmware-mod-kit tar.gz but i don't do that. explain me step by step command to install for tar.gz , please.
Asked
Active
Viewed 7,563 times
1 Answers
1
- At first use
tar -zxvf firmware-mod-kit tar.gzor you can extract by right click on it and click extract here. - Then go inside of newly created folder where the file is extracted.
Make sure you first read a file called INSTALL or INSTALL.txt or README. Check if there is any of these files with the ls command, and then display the right one with:
xdg-open INSTALL
The file will contain the right indications to go on with the compiling process. Usually the three "classical" steps are:
./configure
make
sudo make install
You may also need to install some dependencies, generally after some configure error which will tell you what you are missing. You can also use checkinstall instead of make install.
Kulfy
- 18,154
Avishek Saha
- 507