LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 09-18-2005, 06:23 AM   #1
Ardor
LQ Newbie
 
Registered: Sep 2005
Distribution: RedHat 9.0
Posts: 8

Rep: Reputation: 0
Really really newbie question about installing packages with tar.gz.


I just got RedHat9.0

I have read the README files of the packages, most of them say {Execute the installation program (./install)} but the thing is i do not know how i am supposed to do this.

I tried typing it on the navigation bar of the browser as so "/root/Downloads./install" and "/root/Downloads/./install" but both times i get error messages, "Couldn't find "/root/Downloads./oss-install". Please check the spelling and try again." and "Nautilus has no installed viewer capable of displaying "/root/Downloads/install"." respectively.

I tried downloading and installing the glibc libraries, but i already have them, and its the same thing. I'm pretty lost here...
 
Old 09-18-2005, 06:28 AM   #2
acid_kewpie
Moderator
 
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417

Rep: Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985Reputation: 1985
1) do NOT use the root account to do things like this, that is NOT what it is for.

2) . means your current directory. as such ./install means "run the install script in the current directory" you needd to do this as your current directory should never be on your path, meaning you should only be able to run known installed programs in standard locations unless you explicitly say otherwise. so... you need to change to the directory and then run "./install" etc..
 
Old 09-18-2005, 06:32 AM   #3
Ardor
LQ Newbie
 
Registered: Sep 2005
Distribution: RedHat 9.0
Posts: 8

Original Poster
Rep: Reputation: 0
What do you mean by change to the directory?
As you can see, i am really really really new to this...

EDIT: Okay, i should rephrase my question i guess. Where do i type in the codes? like

Code:
$ cd ~
where does it go?



EDIT again: okay, found it. System Tools, Terminal

Last edited by Ardor; 09-18-2005 at 08:21 AM.
 
Old 09-18-2005, 10:07 AM   #4
grautu
Member
 
Registered: Jul 2005
Posts: 142

Rep: Reputation: 15
Quote:
What do you mean by change to the directory?
This question shows very well that your main need now is not to be in a hurry; otherwise you will face frustrations and even give up your system. Installing packages by your own (and even from *.tgz files) is not the best job to begin with; let packages be those installed automatically (for a wile) and chose some more encouraging jobs to deal with. You might play your existing applications for instance. What such applications do you have now? What do you know about your system?
 
Old 09-18-2005, 10:23 AM   #5
ralvez
Member
 
Registered: Oct 2003
Location: Canada
Distribution: ArchLinux && Slackware 10.1
Posts: 298

Rep: Reputation: 30
While I agree that as a new user you should try to learn how things work, I also am a strong believer that in computer science you learn as you go... so I think it is a good thing to learn to install packages like tar, and tag.gz
So, this is what you do when you want to install a new program using a compressed format like tar.gz
1. Create a directory (like /home/<your home directory>/tmp
2. copy the *.tar.gz file into that directory
3. type "./configure && make && su -c 'make install"
4. when the system prompts you for the root password type it in and ... you are done.

Let me explain what you are doing here, though.

./configure (configures the source files to your system)
the "&& "" means and, so if the configuration part succeeds then it will also run the next command (make).
the make creates an installation fit to your system and finally su -c 'make install' indicates that you want to be the super-user (so you will be prompted for the root password) and the execute a command 'make install'.

Hope this helps.

Rick

Last edited by ralvez; 09-18-2005 at 10:25 AM.
 
Old 09-18-2005, 01:13 PM   #6
Ardor
LQ Newbie
 
Registered: Sep 2005
Distribution: RedHat 9.0
Posts: 8

Original Poster
Rep: Reputation: 0
Yea, thanks for that.
Thing is i keep getting a gcc, g++ error message. It tells me i do not have it.
 
Old 09-18-2005, 01:32 PM   #7
ralvez
Member
 
Registered: Oct 2003
Location: Canada
Distribution: ArchLinux && Slackware 10.1
Posts: 298

Rep: Reputation: 30
That is possible. See, depending what you installed it is possible that you do not have those packages. I typically install everything on my installation of the OS.
If that is the case then you will have to install those packages.

Rick
 
Old 09-18-2005, 01:50 PM   #8
Ardor
LQ Newbie
 
Registered: Sep 2005
Distribution: RedHat 9.0
Posts: 8

Original Poster
Rep: Reputation: 0
Unhappy

From what i gather online, the only way i can fix this IS to reinstall my whole OS...
 
Old 09-18-2005, 01:54 PM   #9
ralvez
Member
 
Registered: Oct 2003
Location: Canada
Distribution: ArchLinux && Slackware 10.1
Posts: 298

Rep: Reputation: 30
Nope. You just install the packages that the system is asking your for.
Thta's it.


Rick
 
Old 09-18-2005, 07:15 PM   #10
bigrigdriver
LQ Addict
 
Registered: Jul 2002
Location: East Centra Illinois, USA
Distribution: Debian stable
Posts: 5,908

Rep: Reputation: 356Reputation: 356Reputation: 356Reputation: 356
For a good read for the Very-new-to-Linux, google up a copy of "Newbies Linux Manual" (I got it from www.linuxdot.org). It has many of the commands newbies will need to learn, things experienced users do every day without thinking twice and take for granted. It has a very good discussion on how to deal with tarballs (the .tar and .tar.gz files).
 
Old 09-18-2005, 07:30 PM   #11
Ardor
LQ Newbie
 
Registered: Sep 2005
Distribution: RedHat 9.0
Posts: 8

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by ralvez
Nope. You just install the packages that the system is asking your for.
Thta's it.


Rick
Yea, apparently i did not install any software developer's packages. But when i try to add it with the Linux CD i get an error and it says it cannot find system dependencies.
openssl=0.9.7a-2
krb5-libs=1.2.7-10

and searched the net and found the tarballs for these, but i could not install them... because i did not have g++

So basically, i the package i want to install is dependent on the package i need to install as a dependency for the package i want to install.

Thanks guys, but one day of surfing and i pretty much got a lot of the non-GUI terminal commands in my head already.(Linux is not THAT hard) Thing is, none of the site actually tells you you need to open the terminal... which was the original reason i made the thread. But now there's the g++ problem

Last edited by Ardor; 09-18-2005 at 07:38 PM.
 
Old 09-18-2005, 07:49 PM   #12
bigrigdriver
LQ Addict
 
Registered: Jul 2002
Location: East Centra Illinois, USA
Distribution: Debian stable
Posts: 5,908

Rep: Reputation: 356Reputation: 356Reputation: 356Reputation: 356
A couple of observations, if you will permit.

The Terminal: check the system tray for an icon that looks like a computer CRT with a shell overlayed (if you're using KDE environment). That's the terminal: a command-line utility that let's you enter commands manually, instead of point-and-click-to-the-point-of-nausea to try to get things done. With the terminal, once you are comfortable with command-line, you can frequently get things done faster that via point-and-click. It depends where your hands are. If on the keyboard, use terminal. If your hand is on the mouse, use point-and-click. Become familiar with both.

RedHat: it's an rpm based system. You probably rarely need tarballs to install apps. Find an rpm. Rpmfind.net is your friend, and RedHat rpms abound.

I'm suprised that RedHat installed, and didn't install glibc. Check your package manager (don't know what it's called in RedHat). If glibc doesn't show up as installed, then select it, insert the appropriate cd/dvd when prompted, and have done with it.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
TAR newbie question Seventh Linux - Newbie 3 10-20-2005 02:46 PM
installing/uninstalling .tar packages onegear Linux - Software 3 10-31-2004 03:39 PM
installing .tar packages! Monkey_Magic Linux - Newbie 3 08-24-2004 10:18 AM
installing .tgz.tar packages slack_is_good Slackware 6 12-18-2003 12:14 PM
(newbie) Error Installing Packages nistelrooy Linux - Newbie 2 10-05-2003 10:21 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 02:01 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration