Difference between revisions of "Firefox Tips"

From CCRMA Wiki
Jump to: navigation, search
(Created page with " == Firefox is already running == Sometimes you will attempt to use Firefox and will receive this error message: File:Firefox_error.png This is probably due to one of t...")
 
(Solving the issue)
Line 17: Line 17:
 
In the terminal:
 
In the terminal:
  
finger {{username}}
+
<code><nowiki>finger {{username}}</nowiki></code>
  
where {{username}} is your username.  For example:
+
where <code><nowiki>{{username}}</nowiki></code> is your username.  For example:
  
finger colinsul
+
<code>finger colinsul</code>
  
 
tells you where I am logged in.
 
tells you where I am logged in.
Line 27: Line 27:
 
If you are logged in on another machine, try logging out there first.  If you aren't logged in, Firefox probably didn't close down properly.  To fix this, run the following command to find all the Firefox session lock files:
 
If you are logged in on another machine, try logging out there first.  If you aren't logged in, Firefox probably didn't close down properly.  To fix this, run the following command to find all the Firefox session lock files:
  
find ~/.mozilla/firefox -name "lock" -or -name ".parentlock"
+
<code>find ~/.mozilla/firefox -name "lock" -or -name ".parentlock"</code>
  
This will just show you where they are.  Now to delete these files, just add -delete to the end of the find command:
+
This will just show you where they are.  Now to delete these files, just add <code>-delete</code> to the end of the find command:
 +
 
 +
<code>find ~/.mozilla/firefox -name "lock" -or -name ".parentlock" -delete</code>
 +
 
 +
After that, your Firefox should start up as usual!

Revision as of 12:10, 15 June 2015

Firefox is already running

Sometimes you will attempt to use Firefox and will receive this error message:

Firefox error.png

This is probably due to one of two reasons:

1. You are logged in on another machine with Firefox running 2. Firefox didn't close properly

Solving the issue

Are you logged in elsewhere?

In the terminal:

finger {{username}}

where {{username}} is your username. For example:

finger colinsul

tells you where I am logged in.

If you are logged in on another machine, try logging out there first. If you aren't logged in, Firefox probably didn't close down properly. To fix this, run the following command to find all the Firefox session lock files:

find ~/.mozilla/firefox -name "lock" -or -name ".parentlock"

This will just show you where they are. Now to delete these files, just add -delete to the end of the find command:

find ~/.mozilla/firefox -name "lock" -or -name ".parentlock" -delete

After that, your Firefox should start up as usual!