LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-02-2010, 07:22 AM   #76
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940

Quote:
Originally Posted by shimonbenyaakov
I pressed ENTER instead of TAB. This is what I got with TAB. Sorry about that.
Now it means that shell has found the firefox you downloaded in your home folder

now after pressing enter does it again say the same thing ?
 
Old 03-02-2010, 07:22 AM   #77
shimonbenyaakov
Member
 
Registered: Feb 2010
Location: space coast of Florida
Distribution: UBUNTU9.10 dual boot w/ WinXP-sp3
Posts: 63

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by anishakaul View Post
You didn't understand what I said !!!!!!!!!!!!

I just told you to type this tar -xf fire , then press TAB if the whole name comes to the prompt automatically, the press enter !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
shimonbenyaakov@andLinux:~$ tar -xf firefox-3.6.tar.bz2
tar: bzip2: Cannot exec: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
shimonbenyaakov@andLinux:~$



OK. I just did that, and got the above.
 
Old 03-02-2010, 07:26 AM   #78
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
That means that you do not have bzip2 installed.

It is the program that encodes and decodes the ".bz2" compression.

And if you didn't ask so many questions in one thread, you wouldn't be bombarded by so many posts like this.
 
Old 03-02-2010, 07:27 AM   #79
JimBrewster
Member
 
Registered: Feb 2010
Location: usa:/dev/random
Distribution: Slackware-15.0; -current
Posts: 245

Rep: Reputation: 60
Quote:
Originally Posted by shimonbenyaakov View Post
shimonbenyaakov@andLinux:~$ tar -xf firefox-3.6.tar.bz2
tar: bzip2: Cannot exec: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
shimonbenyaakov@andLinux:~$



OK. I just did that, and got the above.
Is it possible you don't have bzip2 installed?

Try this:
Code:
sudo apt-get install bzip2
then do the above commands again.
 
Old 03-02-2010, 07:28 AM   #80
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
While you're at it, try "sudo apt-get install firefox".
 
1 members found this post helpful.
Old 03-02-2010, 07:28 AM   #81
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
shimonbenyaakov@andLinux:~$ tar -xf firefox-3.6.tar.bz2
tar: bzip2: Cannot exec: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
shimonbenyaakov@andLinux:~$
I am really surprised at the outputting you are getting !!

To verify the command , just now I downloaded firefox from the link I showed you, and then issued the above command , it worked perfectly !!!!
 
Old 03-02-2010, 07:29 AM   #82
JimBrewster
Member
 
Registered: Feb 2010
Location: usa:/dev/random
Distribution: Slackware-15.0; -current
Posts: 245

Rep: Reputation: 60
And I wonder what half-assed Linux distribution wouldn't have bzip2 by default? Maybe it's a path problem.
 
Old 03-02-2010, 07:30 AM   #83
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
shimonbenyaakov

Reply to post # 75 !
 
Old 03-02-2010, 07:31 AM   #84
shimonbenyaakov
Member
 
Registered: Feb 2010
Location: space coast of Florida
Distribution: UBUNTU9.10 dual boot w/ WinXP-sp3
Posts: 63

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by anishakaul View Post
For knowing the version of Linux distribution:
Code:
uname -a && cat /etc/*release

shimonbenyaakov@andLinux:~$ uname -a && cat/etc*/release
Linux andLinux 2.6.22.18-co-0.7.4 #1 PREEMPT Wed Apr 15 18:57:39 UTC 2009 i686 GNU/Linux
bash: cat/etc*/release: No such file or directory
shimonbenyaakov@andLinux:~$


Thank you!!
 
Old 03-02-2010, 07:34 AM   #85
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
Quote:
shimonbenyaakov@andLinux:~$ uname -a && cat/etc*/release
Linux andLinux 2.6.22.18-co-0.7.4 #1 PREEMPT Wed Apr 15 18:57:39 UTC 2009 i686 GNU/Linux
bash: cat/etc*/release: No such file or directory
shimonbenyaakov@andLinux:~$
Code:
uname -a && cat /etc/*release
There is a space between cat and /etc/*release . Type it carefully please
 
Old 03-02-2010, 07:34 AM   #86
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
It's

cat etc/*release

not

cat/etc*/release

"cat" is a command.
 
Old 03-02-2010, 07:36 AM   #87
shimonbenyaakov
Member
 
Registered: Feb 2010
Location: space coast of Florida
Distribution: UBUNTU9.10 dual boot w/ WinXP-sp3
Posts: 63

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by JimBrewster View Post
Is it possible you don't have bzip2 installed?

Try this:
Code:
sudo apt-get install bzip2
then do the above commands again.

This made things happen. I will now attempt to install Firefox again. THANK YOU!!
 
Old 03-02-2010, 07:37 AM   #88
Aquarius_Girl
Senior Member
 
Registered: Dec 2008
Posts: 4,731
Blog Entries: 29

Rep: Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940Reputation: 940
shimonbenyaakov


You didn't reply to post# 85. You are testing my patience now !!
 
Old 03-02-2010, 07:38 AM   #89
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Quote:
Originally Posted by shimonbenyaakov View Post
This made things happen. I will now attempt to install Firefox again. THANK YOU!!
Try "sudo apt-get install firefox". If it works, you don't need to manually install Firefox!

AND PLEASE DO NOT ASK SO MANY QUESTIONS IN ONE THREAD!
 
Old 03-02-2010, 07:41 AM   #90
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
Here's something I found:

http://www.andlinux.org/

It's not a Linux distro! It's Linux running in Windows!
 
1 members found this post helpful.
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
VM recommendations (Again, different needs now) cwwilson721 Slackware 20 10-20-2009 01:31 PM
PC recommendations, please Merlyn Linux - Newbie 12 07-11-2006 08:29 AM
Recommendations for an old PC alrymala Linux - Newbie 4 06-27-2005 01:14 PM
looking for recommendations Fritz_Monroe Linux - Distributions 3 11-09-2004 11:56 AM
I need your recommendations...! tarballed Linux - Networking 8 02-26-2003 07:33 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:19 AM.

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