LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 12-19-2008, 10:34 AM   #1
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Rep: Reputation: 0
Firefox crashes


Ubnuntu 8.10 dual boot installed and seems to work, but Firefox won't open. It says it is already open, please close and try again. Firefox is not open, have rebooted and tried killall firefox Nothing seems to help, other browser work fine(I don't remember the name). Any ideas? I have also tried uninstalling and reinstalling and same problem.
 
Old 12-19-2008, 10:37 AM   #2
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
do
ps ax | grep firefox
try to open firefox in a terminal, and look for errormessages
 
Old 12-19-2008, 10:41 AM   #3
teknik
Member
 
Registered: Jun 2006
Location: Winnipeg, Canada
Distribution: Slackware 12.1
Posts: 33

Rep: Reputation: 16
you have to delete the lock and parentlock files (sometimes only one of them is there)

To do this, you need to go to your mozilla profile directory:

Code:
cd ~/.mozilla/firefox/(bunch of random characters).default/
rm lock
rm .parentlock
note: if the lock files arent in there, check other the directories in the ./mozilla/firefox/ directory.
 
Old 12-19-2008, 10:50 AM   #4
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by repo View Post
do
ps ax | grep firefox
try to open firefox in a terminal, and look for errormessages
Tried that
roy@roy-2007laptop:~$ ps ax | grep firefox
6280 pts/0 S+ 0:00 grep firefox

when i open in terminal I get the same open but not responding message
 
Old 12-19-2008, 10:55 AM   #5
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Original Poster
Rep: Reputation: 0
Thumbs down

Quote:
Originally Posted by teknik View Post
you have to delete the lock and parentlock files (sometimes only one of them is there)

To do this, you need to go to your mozilla profile directory:

Code:
cd ~/.mozilla/firefox/(bunch of random characters).default/
rm lock
rm .parentlock
note: if the lock files arent in there, check other the directories in the ./mozilla/firefox/ directory.
Tried that, I can't see any lock files

roy@roy-2007laptop:~/.mozilla/firefox/9tgkvvbz.default$ rm lock
rm: cannot remove `lock': No such file or directory
roy@roy-2007laptop:~/.mozilla/firefox/9tgkvvbz.default$ rm .parentlock
rm: cannot remove `.parentlock': No such file or directory
roy@roy-2007laptop:~/.mozilla/firefox/9tgkvvbz.default$
 
Old 12-19-2008, 11:01 AM   #6
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
Tried that, I can't see any lock files
try this
cannabis:/var/lock# find /home/ -name lock
/home/repo/.mozilla/firefox/inpztry5.default/lock
cannabis:/var/lock#
 
Old 12-19-2008, 11:08 AM   #7
teknik
Member
 
Registered: Jun 2006
Location: Winnipeg, Canada
Distribution: Slackware 12.1
Posts: 33

Rep: Reputation: 16
yeah, they should be there... like I said, they may not be in that profile. So just a slight modification to what repo said:

Code:
find /home/(your user)/.mozilla/ | grep lock
should root them out. If they really aren't anywhere in .mozilla/, then I have no idea what's causing the problem. But I've had this happen a few times, and this always solved it.
 
Old 12-19-2008, 11:10 AM   #8
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by repo View Post
try this
cannabis:/var/lock# find /home/ -name lock
/home/repo/.mozilla/firefox/inpztry5.default/lock
cannabis:/var/lock#
Is that all on one line?

roy@roy-2007laptop:~/.mozilla/firefox/9tgkvvbz.default$ cannabis:/var/lock# find /home/ -nme lock
bash: cannabis:/var/lock#: No such file or directory
 
Old 12-19-2008, 11:13 AM   #9
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
in a terminal type
find /home/ -name lock
 
Old 12-19-2008, 11:14 AM   #10
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Original Poster
Rep: Reputation: 0
Thumbs down

Quote:
Originally Posted by teknik View Post
yeah, they should be there... like I said, they may not be in that profile. So just a slight modification to what repo said:

Code:
find /home/(your user)/.mozilla/ | grep lock
should root them out. If they really aren't anywhere in .mozilla/, then I have no idea what's causing the problem. But I've had this happen a few times, and this always solved it.
That pulled up lots of stuff, mostly with clock or block in the title not lock

I am going to try running from live cd and see what that does. I tried reinstalling ububuntu yesterday to no avail
 
Old 12-19-2008, 11:15 AM   #11
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by repo View Post
in a terminal type
find /home/ -name lock
roy@roy-2007laptop:~$ find/home/ -name lock
bash: find/home/: No such file or directory
 
Old 12-19-2008, 11:17 AM   #12
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
find /home/ -name lock
look at the space between find and /home

Last edited by repo; 12-19-2008 at 11:18 AM.
 
Old 12-19-2008, 11:20 AM   #13
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Original Poster
Rep: Reputation: 0
I logged in as guest and it works
 
Old 12-19-2008, 11:23 AM   #14
rz1988
LQ Newbie
 
Registered: Dec 2008
Location: West Texas
Posts: 15

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by repo View Post
find /home/ -name lock
look at the space between find and /home
roy@roy-2007laptop:~$ find /home/ -name lock
/home/roy/.gnome2/epiphany/mozilla/epiphany/lock
 
Old 12-19-2008, 11:23 AM   #15
repo
LQ 5k Club
 
Registered: May 2001
Location: Belgium
Distribution: Arch
Posts: 8,529

Rep: Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899Reputation: 899
Quote:
I logged in as guest and it works
So you still need to delete the lock file in the users directory
 
  


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
Firefox 3.0.1 Crashes alkos333 Slackware 6 09-11-2008 02:34 PM
firefox crashes! rhoni Linux - Newbie 3 03-13-2008 07:35 PM
Firefox crashes too often apachedude Slackware 26 04-27-2006 05:19 PM
firefox 1.0.6 crashes in sid dukeinlondon Debian 22 09-09-2005 03:47 PM
FireFox crashes mikeshn Linux - Software 7 09-10-2004 07:57 AM

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

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