LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Mandriva
User Name
Password
Mandriva This Forum is for the discussion of Mandriva (Mandrake) Linux.

Notices


Reply
  Search this Thread
Old 04-14-2008, 04:40 PM   #31
NOK
LQ Newbie
 
Registered: Nov 2007
Posts: 4

Rep: Reputation: 0

I to am having similar issue. I just installed Fedora 8 on an Dell Optiplex 755 and I get the same error. I can close the program after I try to open it but get the very same error when I try to open FF again.
 
Old 04-14-2008, 04:56 PM   #32
NOK
LQ Newbie
 
Registered: Nov 2007
Posts: 4

Rep: Reputation: 0
Mine doesn't open as root though

Same issue even as root.
 
Old 04-15-2008, 02:56 AM   #33
paulpeer
Member
 
Registered: Apr 2008
Location: Antwerpen
Distribution: Mandriva 2008.0 KDE 3.5
Posts: 50

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by NOK View Post
Mine doesn't open as root though

Same issue even as root.
And do you have a .parentlock in your FF homedirectory?
Can you delete it?
 
Old 04-15-2008, 04:22 AM   #34
ksri07091983
Member
 
Registered: Nov 2007
Location: Chennai,TamilNadu,India
Distribution: RedHat,SuSE
Posts: 65

Rep: Reputation: 15
Hi,

hope this might be usefull..

run the following commands...[ofcourse as a user who has firefox problem]


rm -f `find $HOME/.mozilla -name lock`

rm -f `find $HOME/.mozilla -name sessionstore.js`

rm -f `find $HOME/.mozilla -name .parentlock`

let us know whether that was usefull ...

Thanks

Sridhar
 
Old 04-15-2008, 08:46 AM   #35
NOK
LQ Newbie
 
Registered: Nov 2007
Posts: 4

Rep: Reputation: 0
Yes !!!!

I am so excited it worked!

rm -f `find $HOME/.mozilla -name lock`

ok so I know that rm is the remove command could you explain the rest of the command to me so I might learn from this please.

I think it is doing a search in /home that is looking for the lock file and then deletes it.
 
Old 04-15-2008, 10:19 AM   #36
paulpeer
Member
 
Registered: Apr 2008
Location: Antwerpen
Distribution: Mandriva 2008.0 KDE 3.5
Posts: 50

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by ksri07091983 View Post
Hi,


rm -f `find $HOME/.mozilla -name .parentlock`

let us know whether that was usefull ...
Unfortunately not. I got "Cannot delete .parentlock - File system is read only".
 
Old 04-15-2008, 10:42 AM   #37
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
Why is your filesystem read only? That seems strange to me - last time that happened, my hard disk was failing.

What's the output of the mount command (with no arguments)?
 
Old 04-15-2008, 11:05 AM   #38
paulpeer
Member
 
Registered: Apr 2008
Location: Antwerpen
Distribution: Mandriva 2008.0 KDE 3.5
Posts: 50

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by pwc101 View Post
Why is your filesystem read only?
I wish I knew. It surely wasn't until 2 days ago.

Quote:
Originally Posted by pwc101 View Post
What's the output of the mount command (with no arguments)?
none on / type unionfs (rw)
/dev/hda2 on /media/hd3 type ntfs (ro,sync,umask=0022,nls=utf8)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
 
Old 04-15-2008, 11:19 AM   #39
paulpeer
Member
 
Registered: Apr 2008
Location: Antwerpen
Distribution: Mandriva 2008.0 KDE 3.5
Posts: 50

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by pwc101 View Post
Why is your filesystem read only?
But, by the way, although the error message says it is read-only, it isn't. I just typed

mount > file1

and this perfectly created a text file ...
 
Old 04-15-2008, 11:28 AM   #40
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
hmmm... very odd.

Is there any output from this?:
Code:
lsof /path/to/.parentlock
It may be some process is still using the file, preventing it from being deleted. Although, I must say, I'm clutching at straws now...
 
Old 04-15-2008, 11:35 AM   #41
paulpeer
Member
 
Registered: Apr 2008
Location: Antwerpen
Distribution: Mandriva 2008.0 KDE 3.5
Posts: 50

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by pwc101 View Post
hmmm... very odd.

Is there any output from this?:
Code:
lsof /path/to/.parentlock
It may be some process is still using the file, preventing it from being deleted. Although, I must say, I'm clutching at straws now...
bash: lsof: command not found

About processes: I searched with ps, and there is nothing firefox related ...
 
Old 04-15-2008, 11:46 AM   #42
pwc101
Senior Member
 
Registered: Oct 2005
Location: UK
Distribution: Slackware
Posts: 1,847

Rep: Reputation: 128Reputation: 128
Quote:
Originally Posted by paulpeer View Post
bash: lsof: command not found

About processes: I searched with ps, and there is nothing firefox related ...
You might need to run lsof as root; it's generally installed on most linux distros.
 
Old 04-15-2008, 12:17 PM   #43
jei
LQ Newbie
 
Registered: Jul 2006
Posts: 29

Rep: Reputation: 16
top

Try running top as root, then press "u" and type in the username your running firefox as.

Look for firefox, firefox-bin, or anything that says mozilla.

Then press "k" and type in the pid number. If that fails you might be able to logout, but not reboot to kill that users pids.

if all else fails maybe try

ps -aux | grep 'moz*'
or
ps -aux | grep 'fire*'

and see if anything pops up.

Jei
 
Old 04-15-2008, 12:31 PM   #44
paulpeer
Member
 
Registered: Apr 2008
Location: Antwerpen
Distribution: Mandriva 2008.0 KDE 3.5
Posts: 50

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by pwc101 View Post
You might need to run lsof as root; it's generally installed on most linux distros.
No, even as root lsof is not found ... I'll check if I can install it.
 
Old 04-15-2008, 12:43 PM   #45
paulpeer
Member
 
Registered: Apr 2008
Location: Antwerpen
Distribution: Mandriva 2008.0 KDE 3.5
Posts: 50

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by jei View Post
Try running top as root, then press "u" and type in the username your running firefox as.

Look for firefox, firefox-bin, or anything that says mozilla.

Jei
Thanks, but no. Not in top, nor found anything by ls ...

The only programs that are running under my id are:
nspluginviewer, artsd, net_applet, startkde, dbus-launch, dbus-daemon, s2u and start_kdeinit ...
 
  


Reply

Tags
firefox, readonly



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 already running but not responding wearetheborg Linux - Software 9 09-06-2011 12:52 PM
Slackware. The keyboard stops responding after "Running /etc/rc.d/rc.modules-2.6.21." kolRn Linux - Hardware 10 01-22-2008 12:02 AM
Firefox not responding. 0rinoco Linux - Newbie 2 09-24-2007 02:00 AM
Firefox is already running. . . slackwarefan Linux - Software 3 12-27-2005 06:56 PM
trying to get NIS up: ypserv running but not responding? BrianK Linux - Networking 1 06-07-2004 06:45 PM

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

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