Firefox is already running, but is not responding.


 
Thread Tools Search this Thread
Homework and Emergencies Homework & Coursework Questions Firefox is already running, but is not responding.
# 1  
Old 09-18-2014
RedHat Firefox is already running, but is not responding.

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted!

1. The problem statement, all variables and given/known data:
I am logging in as a regular user, whose home directory is being mounted from nfs server. When I tried to open a firefox it gave me the following error.
"firefox is already running, but is not responding.To open a new window, you must first close the existing Firefox process, or restart your system."

But if I am running as a local user or root of that system, firefox is running. I


2. Relevant commands, code, scripts, algorithms:
I am trying firefox to run this.


3. The attempts at a solution (include all code and scripts):
I run the following script to delete the lock files.

Code:
files=`find ~/.mozilla -name "*lock"`
for file in `echo $files`
do
    echo "removing $file..."
    rm "$file"
done

But nothing happened.



4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):
UTA, Arlington, Texas, USA, Dr. Wright, Course number is 5380


Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).

Last edited by Scott; 09-18-2014 at 03:23 PM.. Reason: Please use code tags
# 2  
Old 09-18-2014
Well, are there any lock files in there it's not finding? Or is firefox complaining for other reasons?
# 3  
Old 09-18-2014
RedHat Firefox is already running, but is not responding.

I have deleted all the lock files with above mentioned script.
Now, there is no lock file.
I am unable to figure out why it is complaining.
# 4  
Old 09-18-2014
If it is running, but not responding, what good would removing lock files do? Maybe you should kill it?
# 5  
Old 09-18-2014
Firefox is already running, but is not responding.

I restarted the system but still it is giving the same error.
I removed lock files because this user is not local user so due to multiple instances it could cause the problem.
# 6  
Old 09-18-2014
OK, thanks.

And you know that the lock files are in that directory, and go by that name?

Perhaps we could start by simplifying that code?

Code:
find ~/.mozilla -name "*lock" -exec rm -v {} \;

It's a bit more robust than using for something in `everything` to process a list of things.
# 7  
Old 09-18-2014
Firefox is already running, but is not responding.

Yes, I know about it. But even after removing the lock files, I am unable to access firefox.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

ls command is not responding...

I am attempting to run 'ls -ltr' on a directory where file is being written. After firing this command, I dont receive any response from the shell. I understand, because one of the file is writing, this must have happened. Is there any way, we can still see the listing represnted the query fire... (3 Replies)
Discussion started by: videsh77
3 Replies

2. Ubuntu

Tux Commander - is not responding

It is now 20 years I have used Total Commander. I was very pleased to find Tux Commander, using Ubuntu, which looks very close to TC. UNFORTUNATELY, it hangs while copying large files. Could anyone give my some tips.:b: Ubuntu 9.10 Tux Cmd version 0.6.70-dev Build date: 2009-11-15 ... (1 Reply)
Discussion started by: Bindee
1 Replies

3. Solaris

Help! System not responding!

Hello All! please help. I have a solaris8 server (NIS client) that lost network connectivity to NIS master server. After restoring connectivity to NIS master server, I can't access the server. 1. The server responds to ping. 2. Telnet -- after it authenticates I do not get a prompt. 3.... (3 Replies)
Discussion started by: pingmeback
3 Replies

4. Debian

error running firefox.desktop file

Hi, I installed the FF3 on my new Debian, and part of the installation guidance is to save a file named firefox.desktop on the desktop, which should act like a shortcut to the FF. The file content is: Name=Mozilla Firefox Browser Comment=lightweight browser based on mozilla Exec=firefox... (15 Replies)
Discussion started by: JonesD1
15 Replies

5. Shell Programming and Scripting

running localhost:8080 on firefox gives error .

I have copied a simple.xml file into the folder /var/www/html and trying to access it on the brower by giving the command "http://localhost:8080/simple.xml" but it gives "Connection Failed " Error . While if i type "http://localhost/" It dispays the contents of the index.html file in the... (2 Replies)
Discussion started by: madhumathikv
2 Replies

6. Solaris

SC on T5220 not responding

Hi, SC on one of my T5220 is not responding .. it does not show not let me type anything .. what could be the reason for it ? though when i powercycle the box from sc it shows me the system coming up but after that does not let me login thru sc sc> console -f Enter #. to return to ALOM. (2 Replies)
Discussion started by: fugitive
2 Replies

7. UNIX for Dummies Questions & Answers

Shell not responding

Hi all (Shell: ksh Unix: NCR Unix) Upon opening a shell, I can type a command (any command), but the shell does very little or nothing. If I cd to an unknown directory, the shell responds with "file not found", if I issue 'ls', I get no directory listing (files are present). If I issue... (2 Replies)
Discussion started by: jgrogan
2 Replies

8. UNIX for Dummies Questions & Answers

Portmapper not responding

Kindly When I start the server i have this error "portmapper on server 185.125.241.321 is not responding" let me also clarify that this is the old IP of the server and the new one 192.168.0.2 regards (1 Reply)
Discussion started by: sak900354
1 Replies

9. HP-UX

Service processor not responding

I am receiving messages from HP-UX Server "The operating system is unable to communicate with the service processor. The support bus which connects the system processors, the service processor and the Power Monitor or Platform Monitor may have become hung ". I need help in the following:... (1 Reply)
Discussion started by: cgege
1 Replies

10. UNIX for Dummies Questions & Answers

NFS SERVER.....not responding

Hi i am using HPUX11.00 and i am facing a starnge problem after some time when i log on a message is coimng NFS server not responding still trying....and it keps on coming there is no other way but to log out..form the server and start once again... there is no file system exported or NFS... (3 Replies)
Discussion started by: Prafulla
3 Replies
Login or Register to Ask a Question