LinuxQuestions.org
Help answer threads with 0 replies.
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 10-05-2007, 07:05 AM   #1
ookami777
LQ Newbie
 
Registered: Aug 2007
Location: U.S., Florida
Distribution: Slackware 12.1
Posts: 11

Rep: Reputation: 0
.tar.gz installing problems (2nd post o' the day!)


OK, i downloaded thunderbird (for linux), and I have NO CLUE how to install. Please excuse my "newbish-ness"
 
Old 10-05-2007, 07:35 AM   #2
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Here is a brief tutorial on how to install thunderbird on Ubuntu. I assume you are running Ubuntu because your other posts were related to Ubuntu, anyway it would be better to specify the distro in your LQ profile, so it will appear aside your posts. Just one note to the above tutorial: if they have not been installed yet, thunderbird can complain about missing shared libraries libstdc++.so.5. In this case you simply have to
Code:
sudo apt-get install libstdc++5
You may also look at a simple application (written in python) to keep thunderbird up-to-date, called ubuntuzilla. Hope this will help.
 
Old 10-05-2007, 07:46 AM   #3
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
It might be easier for you to download a package for your distro. If you installed from disk, you should already have it. Use your package manager.

Also, please put your distro in your profile. We don't know which distro you are using. The above advice is for a Debian based distro. Other's use rpm packages.

I'm sure your distro includes a manual. Learning what package system your computer uses is a good idea. You'll probably learn more about many of the programs available as well.
 
Old 10-05-2007, 08:01 AM   #4
pixellany
LQ Veteran
 
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809

Rep: Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743Reputation: 743
In all distros I have tested so far (~20) Thunderbird was available in the package manager.

Quote:
Learning what package system your computer uses is a good idea.
PRIZE!!!! Understatement of the week!!!
MANY new users (me included) don't immediately realize the power of the Linux package management system.
 
Old 10-05-2007, 03:18 PM   #5
ookami777
LQ Newbie
 
Registered: Aug 2007
Location: U.S., Florida
Distribution: Slackware 12.1
Posts: 11

Original Poster
Rep: Reputation: 0
# sudo tar -C /opt -zxvf ~/Desktop/thunderbird-*
# sudo ln -s /opt/thunderbird/thunderbird /usr/local/bin/thunderbird
# create a menu item: sudo gedit /usr/share/applications/thunderbird.desktop

...Excuse me? *_*
I think this is "terminal-talk" but i can't be certain, could you elaborate?
 
Old 10-06-2007, 03:44 AM   #6
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Ok, let's see... and let me do some questions. Have you any experience on the command line, e.g. do you know basic commands like cd, ls, pwd...? Indeed the tutorial I linked explains how to do things from command line, so you have to open a terminal and type exactly what the instructions say (but always try to verify what you are going to do, since suggested command from anyone in the world must be trusted without knowing if they can mess your system up).
I suppose you have downloaded the last version on your desktop, so you will have something like
Code:
alex@linux:~> ls -l ~/Desktop/thunderbird-2.0.0.6.tar.gz
-rw-r--r-- 1 alex users 11442355 2007-10-06 10:06 Desktop/thunderbird-2.0.0.6.tar.gz
Ok, the first thing is to unpack the tar.gz archive and extract files in /opt. To do this you have to be root, but since in Ubuntu you can't login as root, the way is preceeding any command by sudo
Code:
sudo tar -C /opt -zxvf ~/Desktop/thunderbird-2.0.0.6.tar.gz
See the manual page for tar to learn about options: in brief this uncompress (-z) and extract (-x) the archive (-f) specified and put files in directory (-C) /opt. Doing this it tells you what's going on (-v).
The archive already contains the thunderbird executable, so you have to link them somewhere under your PATH. A good place can be /usr/local/bin:
Code:
sudo ln -s /opt/thunderbird/thunderbird /usr/local/bin/thunderbird
Finally if you want to have a desktop icon, you should create a file .desktop (a sort of descriptor) under /usr/share/applications. Again by root permission, you will open a text editor to create the new file
Code:
sudo gedit /usr/share/applications/thunderbird.desktop
Paste and copy the suggested text, save and all should be done. Advices from jschiwal and pixellany are wise: installing from a software manager let you have a software specifically built for your linux distro and can spare you some headache. Furthermore it can be more easily managed (verified, updated, unistalled and so on...). By the way, it is known that under the Ubuntu repositories there is an old version of Thunderbird, so if you want the very latest version this is the right way to proceed. I also suggest to carefully read the Ubuntu Documentation here. Cheers

Last edited by colucix; 10-06-2007 at 04:13 AM.
 
  


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
Problems installing Fedora/Mandriva on 2nd hard drive! drbongo LinuxQuestions.org Member Success Stories 0 05-10-2006 05:12 AM
LXer: E-Governance major focus on 2nd day of LinuxAsia Convention LXer Syndicated Linux News 0 02-14-2006 08:16 AM
Having problems installing evolution tar.gz darkman74 Linux - Software 4 06-17-2005 06:39 AM
Problems installing tar.gz files NomadABC Linux - Software 12 02-17-2005 05:11 PM
Problems installing from 2nd CD with Mandrake 7.2 Tonneman Linux - Software 2 12-19-2001 03:40 AM

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

All times are GMT -5. The time now is 12:58 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