LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-10-2006, 10:51 AM   #1
lebabyg
Member
 
Registered: Mar 2006
Location: UK
Distribution: Ubuntu Feisty
Posts: 272

Rep: Reputation: 30
Thunderbird, install from .gz file. Won't run


Hello,
I'm trying to update thunderbird to v1.5, but am having serious issues.
I've downloaded and unpacked the .tar.gz file to /thunderbird as per these instructions:
# Open a shell (terminal) and decide where you want to install the new version. Remove the old Thunderbird directory if you want to install over an older version; this does not remove your profile data.
# Go to the directory you want to install Thunderbird, using the command: cd /path/to
# Extract the downloaded Thunderbird "tar.gz" file: tar -xzvf /path/to/thunderbird-<version>-i686-linux-gtk2+xft.tar.gz
# When finished, launch Thunderbird with the command: /path/to/thunderbird/thunderbird
# Thunderbird should pick up your profile information automatically and be ready to use.

However when i type thunderbird and hit enter i get

-bash thunderbird command not found.

Any ideas because its doing my head in. I use thunderbird on windows because i like the Imap features, so i would really like to be able to use it on linux.
Regards,
graham
 
Old 03-10-2006, 11:09 AM   #2
dubya
Member
 
Registered: Mar 2004
Location: Kitchener, Ontario, Canada
Posts: 386

Rep: Reputation: 30
What command are you running exactly and where are you running it from? If you're running simply "thunderbird" this won't work, even in the install directory. You'll need the path in front or, if you are in the install directory, you'll need ./ in front, like this:
Code:
$ ./thunderbird
 
Old 03-10-2006, 12:10 PM   #3
lebabyg
Member
 
Registered: Mar 2006
Location: UK
Distribution: Ubuntu Feisty
Posts: 272

Original Poster
Rep: Reputation: 30
Hey,

I ran ./thunderbird. Now i get the error message ./thunderbird-bin: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
. Any ideas??
Cheers
Graham
 
Old 03-10-2006, 12:13 PM   #4
tomdkat
Member
 
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595

Rep: Reputation: 30
Looks like your system might be missing some C++ libraries.

Try this at a terminal:

$ /sbin/ldconfig -v | grep stdc

and post the output here. Also, you're running SuSe, right? If not, post which distro you're using.

Peace...
 
Old 03-10-2006, 12:21 PM   #5
lebabyg
Member
 
Registered: Mar 2006
Location: UK
Distribution: Ubuntu Feisty
Posts: 272

Original Poster
Rep: Reputation: 30
I'm running FC4 2.6.11-1.1369_FC4. I tried upgrading the kernel, but when i boot up i get a kernel panic message.
Anyway this is the output,

libstdc++.so.6 -> libstdc++.so.6.0.7
/sbin/ldconfig: Can't create temporary cache file /etc/ld.so.cache~: Permission denied

i've recently installed glibc though, could it be a problem with that. Cheers.
 
Old 03-10-2006, 12:33 PM   #6
tomdkat
Member
 
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595

Rep: Reputation: 30
Ok, then you will need to have that older version of libstdc++ installed. Here is something you can try and I know I'll get beat up for it, but try this:
  1. Locate the path to libstdc++.so.6
  2. go to that directory
  3. enter this command: ln -s libstdc++.so.6 libstdc++.so.5
  4. ls -l (confirm a listing like libstdc++.so.5 -> libstdc++.so.6
  5. su to root and run /sbin/ldconfig
  6. Try to run Firefox again
What this will do is make libstdc++.so.5 appear to exist, when it's really pointing to libstdc++.so.6. That might be sufficient to appease Firefox.

Ideally, you should really get libstdc++.so.5 installed. Now, this is critical:

IF YOU DO THE LINK ABOVE AND LATER DECIDE TO INSTALL LIBSTDC++.SO.5, YOU WILL NEED TO DELETE LIBSTDC++.SO.5 FIRST SO YOU WON'T CLOBBER LIBSTDC++.SO.6

Again, I don't really advocate doing the above but it might work for now.

*** POST BACK HERE BEFORE YOU ATTEMPT THIS *** so you can ask questions and see how comfortable you are with this. I'm sure others will verify my command syntax, etc.

Peace...
 
Old 03-10-2006, 12:35 PM   #7
dubya
Member
 
Registered: Mar 2004
Location: Kitchener, Ontario, Canada
Posts: 386

Rep: Reputation: 30
I've had this problem before too. There is a library you can install from yum. There are two that I can't remember the name of, but you can find out what they are with the command:
Code:
$ yum list available | grep libstdc++
That should return two packages. Install both or one and then the other if the first one doesn't work (I'm assuming you're familiar with yum). Try launching it after that.
 
Old 03-10-2006, 12:37 PM   #8
tomdkat
Member
 
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595

Rep: Reputation: 30
Quote:
Originally Posted by dubya
I've had this problem before too. There is a library you can install from yum. There are two that I can't remember the name of, but you can find out what they are with the command:
Code:
$ yum list available | grep libstdc++
That should return two packages. Install both or one and then the other if the first one doesn't work (I'm assuming you're familiar with yum). Try launching it after that.
Great! Try this FIRST and hopefully it will work.

Peace...
 
Old 03-10-2006, 05:32 PM   #9
lebabyg
Member
 
Registered: Mar 2006
Location: UK
Distribution: Ubuntu Feisty
Posts: 272

Original Poster
Rep: Reputation: 30
Hey,

Installed both of the glibc++ that yum offered, and then ran /path/to/./thunerbird. Works a treat, mean si can now install a better theme. I've just gotta work out how to make a shortcut to the desktop now. Can't be bothered running the console command everytime. If only they'd release an .rpm file!! lol.
Cheers guys.
Graham
 
Old 03-10-2006, 05:35 PM   #10
tomdkat
Member
 
Registered: May 2003
Location: S.F. Bay Area
Distribution: Ubuntu 9.04 AMD64
Posts: 595

Rep: Reputation: 30
Great! Glad to hear you're up and running!

Peace...
 
Old 03-10-2006, 06:51 PM   #11
dubya
Member
 
Registered: Mar 2004
Location: Kitchener, Ontario, Canada
Posts: 386

Rep: Reputation: 30
Yeah, I don't know why there hasn't been one, I think it has to do with integration into gnome. Anyway, FC5 is due out next Wednesday and from what I know, the latest versions should be included.

Anyway, not everyday you get two people more than willing to help you that their posts overlap! Enjoy!
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Thunderbird Installed, How to Run?? SuSe Shortcut?? Kevin Tough SUSE / openSUSE 2 08-24-2005 10:27 AM
cant run Thunderbird Dnpa Linux - Software 3 02-14-2005 08:55 AM
how do you install a RUN file to upgrade nvidia chipset? xxvm1 Mandriva 4 09-23-2004 02:46 PM
thunderbird won't run at all MDesigner Slackware 8 06-28-2004 10:25 PM
how do i run mozilla thunderbird? jogurt666 Linux - Software 8 02-01-2004 05:38 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 12:59 PM.

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