Link to home
Start Free TrialLog in
Avatar of patrickhinckle
patrickhinckle

asked on

Extractinn Tar.gz files to install program (Easy question)

I just downlaoded a program from the net.  It's called, gaim-0.9.10-1.src.rpm.  I typed  rpm -ivh gaim-0.9.10-1.src.rpm  It went through the little process of hash marks.  then i locate it and get this.

[patrick@localhost patrick]$ locate gaim
/home/patrick/gaim-0.9.10-1.src.rpm
/usr/src/redhat/SOURCES/gaim-0.9.10.tar.gz
/usr/src/redhat/SPECS/gaim.spec

Question is where do i go from here?  I tried extractiing the tar file and it just sits there for ever...and does nothing.  I am probably doing it wrong.  the man pages for tar are really confusing so i would appreciate it if you could get me going here...Thanks
If there is any more info i can provide just ask....
Avatar of rbr
rbr

tar xvzf gaim-0.9.10.tar.gz should work.
if not try
gunzip gaim-0.9.10.tar.gz
tar xvf gaim-0.9.10.tar
ASKER CERTIFIED SOLUTION
Avatar of pogga
pogga

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of patrickhinckle

ASKER

thankyou...