LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-22-2004, 04:45 AM   #1
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Rep: Reputation: 90
Angry Thunderbird closes upon Reply


Hi all,

yesterday I upgraded Thunderbird to 0.8, but now whenever I want to reply to a message, thunderbird simply closes. I installed just as I did before: remove the old thunderbird tree, also removed the chrome directory in my profile. As suggested on the Thunderbird page, the first time I ran thunderbird as root, but that didn't help either.

Anybody similar behaviour and/or solution?

Cheers, Leon.
 
Old 09-22-2004, 04:54 AM   #2
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
Does it work when running it as root ?
 
Old 09-22-2004, 06:20 AM   #3
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Original Poster
Rep: Reputation: 90
Cedrik,

No such problem when running as root.
What does that tell me?

EDIT: Actually, same happens when composing a message (as user)

Last edited by BroX; 09-22-2004 at 06:30 AM.
 
Old 09-22-2004, 08:42 AM   #4
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
That just tell you there are permissions problem

Where is the Thunderbird directory ?
 
Old 09-22-2004, 09:09 AM   #5
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Original Poster
Rep: Reputation: 90
I installed it the same way as usual:

- as root, copy the tar ball to /usr/local/
- cd to /usr/local/
- rm -rf the old thunderbird tree
- untar the new version

The permissions are currently
755 for thunderbird directory and the files it contains, except libsoftokn3.chk and components.ini which have 644.
 
Old 09-22-2004, 09:33 AM   #6
sio
Member
 
Registered: Jul 2003
Location: Louisiana, US
Distribution: Slackware
Posts: 129

Rep: Reputation: 15
you did it as root. So as the instructions say, I believe, you need to make the first time you run the program be root, not user, so that it can setup some defaults something or nothers. If user has permissions to /usr/local then do the same steps above as a user. Should work out fine. If not, do the same steps as root but make the first time you run it be root and not a user. See what happens
 
Old 09-22-2004, 10:23 AM   #7
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
You could search the files that have root-only read permissions like 0700 and 0600.
Code:
find /usr/local/<thunder dir> -uid 0 -perm 0600
find /usr/local/<thunder dir> -uid 0 -perm 0700

#and to set them accordingly :

find /usr/local/<thunder dir> -uid 0 -perm 0600 -exec chmod 0644 "{}" \;
find /usr/local/<thunder dir> -uid 0 -perm 0700 -exec chmod 0755 "{}" \;
 
Old 09-22-2004, 10:49 AM   #8
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Original Poster
Rep: Reputation: 90
I tried running TB as root first, but that didn't make a difference.

Quote:
Originally posted by Cedrik
You could search the files that have root-only read permissions like 0700 and 0600.
Code:
find /usr/local/<thunder dir> -uid 0 -perm 0600
find /usr/local/<thunder dir> -uid 0 -perm 0700
Doesn't find anything. But shouldn't I perform the 'find' recursively?
 
Old 09-22-2004, 11:40 AM   #9
sio
Member
 
Registered: Jul 2003
Location: Louisiana, US
Distribution: Slackware
Posts: 129

Rep: Reputation: 15
as a user untar it in your home directory, startit up and see if the problem still occurs, if it does id look at maybe submitting a bug report or something, if it doesn't.... well i dunno, id still look at maybe submitting a bug report
 
Old 09-23-2004, 02:06 AM   #10
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Original Poster
Rep: Reputation: 90
When I run TB from console, I get the following error when trying to compose:
Code:
leon@leon-fyg:~$ thunderbird 
INTERNAL ERROR on Browser End: Could not get the JVM manager
System error?:: Success
leon@leon-fyg:~$
Anyone an idea what the JVM manager is??

I'll untar it in a user directory and see what that brings...
 
Old 09-23-2004, 06:21 AM   #11
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Original Poster
Rep: Reputation: 90
Same behaviour when I untar TB in my home directory, so it's not simply a permissions thing, right?
 
Old 09-23-2004, 07:17 AM   #12
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Original Poster
Rep: Reputation: 90
Found some old bug reports on the subject, and another person getting the same error with the latest build when opening a message:
https://bugzilla.mozilla.org/show_bug.cgi?id=223600#c33
It appears that TB is looking for a Java plugin. Haven't tried to get rid of that yet. Will post back when I have.
 
Old 09-23-2004, 07:21 AM   #13
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
As a note, 'find' works recursivly by default.

Have you 'j2sdk' package installed ? What is your output with :
echo $PATH
 
Old 09-23-2004, 07:30 AM   #14
BroX
Member
 
Registered: Oct 2003
Location: Sweden
Distribution: Slackware64-current, SlackwareARM-15.0
Posts: 833

Original Poster
Rep: Reputation: 90
Cedrik,

yes, I have j2sdk installed

Code:
leon@leon-fyg:~$ lspkg j2sdk
j2sdk-1_4_2_04-i586-3
leon@leon-fyg:~$ echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games:/usr/lib/java/bin:/usr/lib/java/jre/bin:/usr/lib/qt/bin:/usr/share/texmf/bin:.:/home/leon/bin:/sbin:/home/leon/bin:/sbin:/usr/bin:/usr/local/bin:/opt/kde/bin
leon@leon-fyg:~$
 
Old 09-23-2004, 07:41 AM   #15
Cedrik
Senior Member
 
Registered: Jul 2004
Distribution: Slackware
Posts: 2,140

Rep: Reputation: 244Reputation: 244Reputation: 244
Try to copy or link the file :
/usr/lib/j2sdk1.4.2_04/jre/plugin/i386/ns610-gcc32/libjavaplugin_oji.so

in your TB plugins dir
 
  


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
Quick Reply "post reply" button. IsaacKuo LQ Suggestions & Feedback 16 07-01-2018 02:52 PM
Moving from Thunderbird in Windows to Thunderbird in Linux pnh73 Linux - Software 14 11-05-2011 09:24 AM
Everything closes dsfreak Linux - Newbie 3 07-26-2005 10:57 PM
post reply & submit reply buttons annehoog LQ Suggestions & Feedback 10 01-05-2004 06:43 PM
Evolution - reply - missing own reply emanuelgreisen Linux - Software 0 01-31-2003 04:40 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

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