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 01-20-2009, 03:45 AM   #1
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Rep: Reputation: 15
Thunderbird.tar.gz - can't get installed


Hey guys, I am still trying to figure out this .tar.gz stuff. I have run tar xvzf [tarballfile] and have a thunderbird folder on my desktop. There is no ./configure in the file. I am cd'd into the thunderbird folder. I saw in another forum somebody told another person to cd into the folder, and run ./thunderbird. When I try and do that, I get the following output. I will also show you the ls from the file:

bparkerson04@bparkerson04-laptop:~/Desktop$ cd thunderbird
bparkerson04@bparkerson04-laptop:~/Desktop/thunderbird$ ls
chrome libfreebl3.so libsoftokn3.so removed-files
components libldap50.so libssl3.so res
defaults libmozjs.so libxpcom_compat.so run-mozilla.sh
dependentlibs.list libnspr4.so libxpcom_core.so thunderbird
dictionaries libnss3.so libxpcom.so thunderbird-bin
extensions libnssckbi.so libxpistub.so updater
greprefs libplc4.so license.html updater.ini
icons libplds4.so LICENSE.txt updates
init.d libprldap50.so mozilla-installer-bin xpicleanup
isp libsmime3.so mozilla-xremote-client
libfreebl3.chk libsoftokn3.chk README.txt
bparkerson04@bparkerson04-laptop:~/Desktop/thunderbird$ ./thunderbird
./run-mozilla.sh: 424: ./thunderbird-bin: not found
bparkerson04@bparkerson04-laptop:~/Desktop/thunderbird$


Can anyone help me? Are .tar.gz files simply unzipping them to a folder, then running the ./configure or the equivalent? What am I doing wrong? This is the only thing about linux so far that I can't seem to figure out. Thank you so much for your help!
 
Old 01-20-2009, 03:47 AM   #2
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Original Poster
Rep: Reputation: 15
bparkerson04@bparkerson04-laptop:~/Desktop$ cd thunderbird
bparkerson04@bparkerson04-laptop:~/Desktop/thunderbird$ ls
chrome libfreebl3.so libsoftokn3.so removed-files
components libldap50.so libssl3.so res
defaults libmozjs.so libxpcom_compat.so run-mozilla.sh
dependentlibs.list libnspr4.so libxpcom_core.so thunderbird
dictionaries libnss3.so libxpcom.so thunderbird-bin
extensions libnssckbi.so libxpistub.so updater
greprefs libplc4.so license.html updater.ini
icons libplds4.so LICENSE.txt updates
init.d libprldap50.so mozilla-installer-bin xpicleanup
isp libsmime3.so mozilla-xremote-client
libfreebl3.chk libsoftokn3.chk README.txt
bparkerson04@bparkerson04-laptop:~/Desktop/thunderbird$ ./thunderbird
./run-mozilla.sh: 424: ./thunderbird-bin: not found
bparkerson04@bparkerson04-laptop:~/Desktop/thunderbird$
 
Old 01-20-2009, 04:34 AM   #3
Agrouf
Senior Member
 
Registered: Sep 2005
Location: France
Distribution: LFS
Posts: 1,596

Rep: Reputation: 80
A .tar.gz is just a set of files compressed together. You can put anything in them.
Many people distribute source code as tar.gz, but your thunderbird tar.gz does not look like source code, and does not have to be ./configure'd.
It is just that the run-mozilla.sh script in this archive is buggy or not meant to be run with your setup. Are you running bash?
Did you try to run thunderbird-bin directly?
Could you please post the result of 'ls -l ./thunderbird-bin'?
Could please post some lines of run-mozilla.sh (around line 424, say from 400 to 430)?

Last edited by Agrouf; 01-20-2009 at 04:35 AM.
 
Old 01-20-2009, 04:43 AM   #4
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
try
chmod +x ./thunderbird-bin
./thunderbird-bin

Did you read the readme file?
 
Old 01-20-2009, 08:05 AM   #5
craigevil
Senior Member
 
Registered: Apr 2005
Location: OZ
Distribution: Debian Sid/RPIOS
Posts: 4,885
Blog Entries: 28

Rep: Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533Reputation: 533
Most distro have Thunderbird as a package try installing it using your distros package manager.

The Mozilla packages do not need to be installed , simple untar and run the thunderbird executable.
 
Old 01-20-2009, 04:45 PM   #6
jay73
LQ Guru
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 11.04, Debian testing
Posts: 5,019

Rep: Reputation: 133Reputation: 133
Exactly. Have you found that thingie called Synaptic Package Manager (System > Admin > Synaptic)? Just find thunderbird on the list, check its box and it will be installed for you.
 
Old 01-20-2009, 05:46 PM   #7
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Original Poster
Rep: Reputation: 15
I'll try some of this when I get home tonight. I tried clicking on thunderbird and stuff, and a window would pop up with a run button, or run in terminal. Neither of these buttons did anything? In regards to the mozilla-sh thing, how do I show you the lines (400-?) How do I pull those up for you? How can I run the Thunderbird executable? I want to do it this way simply because I want to learn how to compile and install these .tar.gz files. It bugs me not to know how to do something, and I really am considering making linux my primary OS, but I have to master something basic like this to do it though. Downloading is an essential skill in an OS : ) Thanks for the help guys.


Hey repo, your suggestion...are those two seperate commands? Run the one on top first, and then run the one under it?
 
Old 01-21-2009, 03:26 AM   #8
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
Hey repo, your suggestion...are those two seperate commands? Run the one on top first, and then run the one under it?
yes
 
Old 01-21-2009, 11:58 PM   #9
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Original Poster
Rep: Reputation: 15
Okay guys, just an update. I am somewhat convinced now that there is something wrong with the tar file. The output saying run-mozilla.ssh : 442 :./thunderbird.sh does not exist got me thinking that maybe the file is missing in the code on line 442 in the run-mozilla file. I opened it up, and line 442 simply says fi, and the next line is an exit command. The lines above it are an if, then, else statment. I tried adding ./thunderbird.ssh (can't remember the file extension), ./thunderbird, ./thunderbird.bh, (i used the right file extension, I just don't remember it as I'm typing). The last thing I tried was adding the path to the thunderbird.bh file, but that didn't work either. I have tried running the run-mozilla-bh and thunderbird-bh (the executables) by double clicking them, and trying to run them in terminal via ./ and nothing works. I am under the opinion now that the tarball file is bad. Am I still doing something wrong? Is it possible for the tarball file to be bad? I am willing to start over. Can someone give me a step by step from square 1? Before I tried to install it, I downloaded the stuff the ubuntu forum says you need unpack and make tarballs via command line. Does anyone know off hand what all I need to download to unpack and install these files? I want to learn tarball, but I am ready to give up on this example and just use the synaptic package manager, but I would like to do this tarball so I can learn and grow from it, and I also just don't like giving up on things. Thanks again for your help guys!
 
Old 01-22-2009, 02:40 AM   #10
brianL
LQ 5k Club
 
Registered: Jan 2006
Location: Oldham, Lancs, England
Distribution: Slackware64 15; SlackwareARM-current (aarch64); Debian 12
Posts: 8,298
Blog Entries: 61

Rep: Reputation: Disabled
What does that "README.txt" say?
I'm just guessing here, try:
Code:
./mozilla-installer-bin
 
Old 01-23-2009, 09:02 PM   #11
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Original Poster
Rep: Reputation: 15
The readme actually doesn't say anything. It just give a link to the mozilla site if you need help downloading the file. I followed that link, and I couldn't find anything that was helpful. The link takes you directly to the page to download Thunderbird.
 
Old 01-23-2009, 11:56 PM   #12
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Original Poster
Rep: Reputation: 15
okay, I extracted the tar file to my desktop.
I cd to the thunderbird file on my desktop. The only things that look like they might do anything are mozilla-installer-bin, mozilla-xremote-client, run-mozilla.sh, thunderbird (in green as well as all other files I am typing), thunderbird-bin, updater, xpicleanup, removed-files

here are some outputs

when I try ./thunderbird, I get the output
./run-mozilla.sh: 424: ./thunderbird-bin: not found

when I try ./run-mozilla.sh, I get
run-mozilla.sh: Cannote execute .

when I try ./mozilla-installer-bin, I get
bash: ./mozilla-installer-bin: No such file or directory

when I try ./thunderbird-bin, I get
bash: ./thunderbird-bin: No such file or directory

Do you guys have any ideas?
 
Old 01-24-2009, 01:22 AM   #13
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Just to leave nothing to chance, I assume you've downloaded the file thunderbird-2.0.0.19.tar.gz from the Thunderbird site.
1. Open a terminal and navigate to the folder where you downloaded the tarball
2. Untar it (you may have down this already)
Code:
tar zxvf thunderbird-2.0.0.19.tar.gz
You will see a new directory called "thunderbird".
3.
Code:
cd thunderbird
Now there is an executable by the same name as the current folder, thunderbird. If you want to test it, type this:
4.
Code:
./thunderbird
I download things to /tmp and not to the desktop to avoid clutter so doing the above command on my system looks like this:
Code:
jdkaye@Attila:/tmp/thunderbird$ ./thunderbird
5. Now close thunderbird and cd up one level
Code:
cd ..
and move the whole thunderbird folder to a permanent location. I'd suggest moving it to /opt. You have to be root or use sudo to do this.
Code:
jdkaye@Attila:/tmp$ sudo mv thunderbird /opt
6. Create a shortcut to /opt/thunderbird/thunderbird on your desktop and you're good to go.
Cheers,
jdk
 
Old 01-24-2009, 03:25 PM   #14
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Original Poster
Rep: Reputation: 15
I am still trying to learn the folder structure and how the directories work in linux. I usually donwload everything to my Documents folder or to the desktop. When I cd to the thunderbird folder on the desktop, and I try ./thunderbird, I get the output that you can see in the post above yours from me. The output almost seems like there is something missing in the run-mozilla.sh file at line 442, and it has something to do with the thunder-bin folder. Could you possible give me a run down on how the folder and directory structure works in linux for someone who has used windows all their life? I don't really know where stuff downloads by default, where to find my favorites for firefox, where all of my programs are located in the filesystem, etc. Thanks for all the help guys!
 
Old 01-25-2009, 02:28 AM   #15
bparkerson04
Member
 
Registered: Sep 2008
Posts: 46

Original Poster
Rep: Reputation: 15
Okay guys, good news. I came home, hooked my system up to the net, did an update, and now the ./thunderbird from the thunderbird folder works. when I type that in the terminal, it launches thunderbird. my next question is how do I actually install it and have a launcher from my start menu thingy (don't know what it's called in linux), and all that jazz. Where do installed programs go by default? in windows they usually go to C:/Program Files/ etc. What is the equivalent in linux so I can start puttin things there. Thanks again for the help guys.
 
  


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
thunderbird is not being installed @ F7 charm200 Linux - Software 5 08-22-2007 01:48 PM
Install thunderbird -1.5.0.8.tar.gzon Mandriva 2007 Kenneth Calhoun Linux - Software 3 01-26-2007 05:25 AM
Thunderbird extensions are not installed after restart Aperculum Linux - Software 2 04-11-2006 05:02 AM
Thunderbird... installed sort of tweakerxp Linux - Software 7 01-30-2006 02:21 PM
Installing Thunderbird..... tar.gz lovelyguinness Linux - Newbie 6 07-11-2004 05:26 PM

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

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