Results 1 to 7 of 7

Thread: "Firefox Already Running"

  1. #1
    Join Date
    Jan 2014
    Beans
    67

    "Firefox Already Running"

    It happens fairly often, but not predictably. I'm in and out of Firefox throughout the day, and once in a while I get this when I go to open it:

    Firefox is already running but is not responding. You must either close Firefox or restart your system.
    I check, and Firefox isn't running at all. I enter "top" in a terminal and Firefox does not appear in the list of running software.

    Only a reboot restores access to Firefox! It happens almost daily. Is there some setting that needs to be changed?

    I'm running Xubuntu 12.04

    Thanks!
    FirefoxAlreadyRunning.png
    Last edited by robin7; March 28th, 2014 at 02:42 PM.

  2. #2
    Join Date
    Nov 2012
    Location
    Halloween Town
    Beans
    Hidden!
    Distro
    Xubuntu Development Release

  3. #3
    Join Date
    Aug 2006
    Beans
    13,354
    Distro
    Ubuntu Mate 20.04 Focal Fossa

    Re: "Firefox Already Running"

    You can kill the firefox proccess with pkill firefox. Top shows all running processes (usually over 100), and firefox may be off the screen. Run ps ax | grep firefox to check.

  4. #4
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: "Firefox Already Running"

    As the link from slickymaster points out, you need to remove the .parentlock file from your Firefox profile.

    The profile is stored as $HOME/.mozilla/abcdefgh.default, with "abcdefgh" replaced by a random string of letters and numbers. Inside the profile folder you'll find a file called .parentlock. With Firefox completely shut down, delete that file. Firefox will start normally again.

    The .mozilla directory and the .parentlock file are examples of "hidden" files. Files beginning with a dot are not normally displayed unless you enable the "Show Hidden Files" option in programs like Nautilus or Dolphin. If you're comfortable with the command prompt, follow these steps:
    Code:
    $ cd ~
    $ cd .mozilla
    $ ls 
    listing of files; look for "something.default"
    $ cd something.default
    $ ls -a
    listing of files; look for .parentlock
    $ rm .parentlock
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

  5. #5
    Join Date
    Mar 2014
    Location
    Greater Noida,UP,India
    Beans
    78
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: "Firefox Already Running"

    As an alternative try using the latest version of firefox anx preferably run it from the terminal with sudo privilages.I hope it will automatically sort out the problem.
    Nav

  6. #6
    Join Date
    Mar 2010
    Location
    India
    Beans
    8,116

    Re: "Firefox Already Running"

    Quote Originally Posted by Navneet_Kumar View Post
    As an alternative try using the latest version of firefox anx preferably run it from the terminal with sudo privilages.I hope it will automatically sort out the problem.
    NEVER run any browser with root privileges!! That is an open invitation to the bad guys/things on the Internet to intrude, conquer and rule your system within minutes if not seconds!

    Doesn't mean it will happen immediately, but with a browser running as root, your system is just as secure as a fat rabbit surrounded by a pack of wolves.
    Varun
    Help others by marking threads as [SOLVED], if they are. (See how)
    Wireless Script | Use Code Tags

  7. #7
    Join Date
    Nov 2008
    Location
    Boston MetroWest
    Beans
    16,326

    Re: "Firefox Already Running"

    Besides if you ran Firefox with root privileges, it would be using root's profile in /root/.mozilla. That wouldn't help with a problem in the user's own profile.

    Just delete the .parentlock file. It's a pain in the neck, but it does solve the problem.
    If you ask for help, do not abandon your request. Please have the courtesy to check for responses and thank the people who helped you.

    Blog · Linode System Administration Guides · Android Apps for Ubuntu Users

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •