Computer Forums

Search Tech-Forums.net

Member Login

Remember Me? Sign Up! | Forgot Password
 
 
Reply
Old 12-20-2003, 05:40 PM   #1 (permalink)
ADZ
 
Master Techie
Join Date: May 2003
Posts: 2,233
ADZ is on a distinguished road
Send a message via Yahoo to ADZ
Default stupidest question of all time

how the bloody **** do you install something.

I have the x.tar.gz file and i open it up and theres no bloody install file!

Am i missing something here!?!
ADZ is offline   Reply With Quote
Old 12-20-2003, 07:30 PM   #2 (permalink)
 
True Techie
Join Date: Oct 2003
Posts: 204
gruntwerk
Default

Okay, you have a x.tar.gz file
first, a .gz file is GZipped.... and will need to be unzipped. . .
$gunzip <filename>
this give you x.tar file
tar is Tape Archive Format file
this will need to be untarred. . .
$tar -xvf <filename>
(*
or you could do both in one line
$ gunzip < filename |tar -xvf -
on some systems just
$tar -zxvf <filename>
will work unzip and untar -may not work for you
*)
this will create a subdirectory containing the files. . .
for more info see : http://www.linux.org/lessons/beginne...lesson15b.html

$cd <directory>
$ls
-you should see a readme or install file. . .
$cat install |less
and do what it says
- generally if is a source package,
do
$./configure
then
$./make
then
$./make install
or all in one line as in previous post. . .
gruntwerk is offline   Reply With Quote
Old 12-21-2003, 04:31 AM   #3 (permalink)
 
Monster Techie
Join Date: Nov 2002
Posts: 1,368
shan
Send a message via AIM to shan
Default

or take the lazy way out and serach for an rpm!
rpms.freshmeat.com
__________________
<center><h2><font color=\"red\">C:\\ Is the root of all evil</font></h2>
<hr width=\"50%\">
phiber@sysdum.com
spam this account, it's fun.
shan is offline   Reply With Quote
Old 12-21-2003, 06:34 PM   #4 (permalink)
ADZ
 
Master Techie
Join Date: May 2003
Posts: 2,233
ADZ is on a distinguished road
Send a message via Yahoo to ADZ
Default

lol. So when downloadin shiyt, look for RPMs...Done and Done!

also. Need a p2p proggy. Any suggestions! and dammit i still cant get my MP3s to work!!!
ADZ is offline   Reply With Quote
 
Reply

Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On