paragkalra
The Linux Man !
Hi everyone,
Installing rpms in linux is pretty simple.........all you need to do:
#rpm -ivh <file-name>.rpm
At times we may be required to use further more options like --force and --nodeps. Buts that okay.
However if the software is tape archived, we generally do:
#tar -xvf <file-name>.tar
cd <file-name>
./configure
make
make install
Although its not hard and fast.
Can anyone please explain what exactly happens when we fire:
./configure
make
make install
Some times we just need to fire:
make
So how to decide what to fire and what not to fire?
Installing rpms in linux is pretty simple.........all you need to do:
#rpm -ivh <file-name>.rpm
At times we may be required to use further more options like --force and --nodeps. Buts that okay.
However if the software is tape archived, we generally do:
#tar -xvf <file-name>.tar
cd <file-name>
./configure
make
make install
Although its not hard and fast.
Can anyone please explain what exactly happens when we fire:
./configure
make
make install
Some times we just need to fire:
make
So how to decide what to fire and what not to fire?