Jump to content

How To Run Programs


Guest Ballz2TheWallz

Recommended Posts

  • Replies 28
  • Created
  • Last Reply

Top Posters In This Topic

Guest Ballz2TheWallz

[zach@localhost zach]$ cd /home/zach/Desktop

[zach@localhost Desktop]$ tar -xvjf mozilla-i686-pc-linux-gnu-1.4-sea.tar.gz

bzip2: (stdin) is not a bzip2 file.

tar: Child returned status 2

tar: Error exit delayed from previous errors

[zach@localhost Desktop]$ tar -xvjf mozilla-i686-pc-linux-gnu-1.4-sea.tar.gz

bzip2: (stdin) is not a bzip2 file.

tar: Child returned status 2

tar: Error exit delayed from previous errors

 

 

?? divx codec didnt do dat craped mozzila

Share this post


Link to post
Share on other sites

try this..

 

mv /home/zach/Desktop/mozilla-i686-pc-linux-gnu-1.4-sea.tar.gz /home/zach/

(may have to use /home/zach/mozilla-i686-pc-linux-gnu-1.4-sea.tar.gz)

 

gzip -d mozilla-i686-pc-linux-gnu-1.4-sea.tar.gz

tar -xvf mozilla-i686-pc-linux-gnu-1.4-sea.tar /home/zach/moztemp

 

cd /home/zach/moztemp

 

su

<enter password>

 

./configure

make

make install

 

exit

Share this post


Link to post
Share on other sites

different arguments are needed for different compression types (.zip .tar.z .tar.gz .tar.bz2) it was just the wrong arguments... also... if you run into a problem there is always a thing called a manual (or man) page... this will help you learn alot even if it dosent help with your problem... for example you would type something like this if you had a problem with ls

 

$ man ls

 

you can learn a lot from man pages... just a helpful hint

Share this post


Link to post
Share on other sites

if you run into a problem there is always a thing called a manual (or man) page... this will help you learn alot even if it dosent help with your problem... for example you would type something like this if you had a problem with ls

 

$ man ls

 

you can learn a lot from man pages... just a helpful hint

yea..and man pages are usually a couples pages long, even for somthing simple like ls, so grab some popcorn

Share this post


Link to post
Share on other sites

True, there is always the linux doc project - www.tldp.org or here if you need help.

 

When I first started to use linux I prefered the graphical interface, but quickly infact very quickly I got the hang of using the commands, coupled with writing little shell, perl and other scripts I managed to complete the same tasks alot quicker.

 

I now hardly use the graphical interface, it just takes a little time. The other day I was working on an win 98 comptuer and needed to use the dos prompt for something, I kept typing ls and cp instead of dir and copy, lol.

 

Also if you use

 

tar zxvf filename.tar.gz

 

it will gunzip and untar the file for you :)

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×
×
  • Create New...