Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tar help

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am having a problem when using tar files. I believe I am successfully extracting the file in x-windows. It creates the directory with the files in side but when in the terminal window I go the directory, and then:

./configure
loading cache ./config.cache
checking for gcc...no
checking for cc...no
configure:error: no acceptable cc found in $PATH.

I get this same error no matter which tar file I use. Any help would be appreciated.

 
It's looking for a c compiler, which it can't find. The tar file is there ok, but gcc is not. Gcc is hte Gnu c compiler, which if you type "gcc -v" it should print the version. If you didn't install it when you installed linux, you need to go get it. What version of Linux do you have? Redhat has a development option, which installs gcc, but if you don't select it at install time, you don't have it. So, if you don't have it, get it, if you do have it, put the path to it in your env by:
export PATH=$PATH:/path/to/gcc
and then it should work.

MWB. As always, I hope that helped!

Disclaimer:
Beware: Studies have shown that research causes cancer in lab rats.
 

thanks mbaranski, I can see I was missing alot of the packages. I have Linux Mandrake 7.2 and just loaded the compiler. Tar files open like magic. Thanks again.





 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top