LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Running installed .tar.gz apps (https://www.linuxquestions.org/questions/linux-software-2/running-installed-tar-gz-apps-80736/)

-=DpG26=- 08-10-2003 05:14 PM

Running installed .tar.gz apps
 
Hey All,

I downloaded an app in a tar.gz file and saved it to /home/user ran the following commands to gunzip it:

gzip -d app.tar.gz

then ran:

tar xvf app.tar

it created the new dir just fine. I chaged to the new dir and then ran:

./configure
make all

It looked like it installed but the I tried to run the app in the terminal and got a 'command not found' error. So I am guessing it didn't install? Tried this a few times and same thing. how do I check to see if it has been installed? Running RedHat8. Any help would be appreciated. Cheers.

-=DpG=-

Riley 08-10-2003 05:18 PM

You need to be root to install stuff unless you killed all the permissions on your machine. Try:
./configure
make
su root
make install

-=DpG26=- 08-10-2003 05:24 PM

Hey Riley,

Thanks for the reply. I was already executing as root. Same thing happened when I tried to install another app. Everyting looks fine in the install and then no dice.

?

-=DpG=-

Riley 08-10-2003 05:24 PM

there's a program out called checkinstall which does what you want. Look for it on google and you'll undoubtedly find it.

Riley 08-10-2003 05:26 PM

It may just be the program not installing to a directory in the path. I know I've installed some stuff like that before. Do a find as root to search for the program. You may have to use the whole path to run it.

-=DpG26=- 08-10-2003 05:45 PM

Tried that too. I think the problem is that I am in way over my head. The app is fping and I have a feeling there some other configuration to do here. And being somewhat new to this I am struggling. Not to mention I can't find much in the way of documentation on the install process. Appreciate your help Riley..very cool.

-=DpG=-


All times are GMT -5. The time now is 11:07 PM.