0

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.

thomasrutter
  • 36,774
crazyred
  • 1
  • 1
  • 1

1 Answers1

1
  1. At first use tar -zxvf firmware-mod-kit tar.gz or you can extract by right click on it and click extract here.
  2. Then go inside of newly created folder where the file is extracted.
  3. 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.

See here https://help.ubuntu.com/community/CheckInstall

Kulfy
  • 17,696
  • I know this is an old thread, but it's prominent in Google.. specifically for fmk, you untar it; there's all these shell scripts (.sh files) that perform the kit's various functions. They build source as needed -- gcc spits out a lot of warnings but it builds. I had to install python-magic. – hwertz Sep 28 '16 at 00:10