DoC Computing Support Group


Unlocking Applications

Your graphical session on a departmental Linux computer may, from time to time, be interrupted by some unforeseen event:

At your next graphical session, you may find that some applications have left behind lock files. If there is no running application associated with these lock files they are considered stale. Their presence may stop subsequent launch of applications that check to prevent more than one application instance being run at a time.

Please find below commands to run in a terminal to remove stale lock files for a number of common applications. After running the relevant commands, you should then be able to launch the affected applications.

Please note: if you have exceeded your quota, you should address that first. You should try to ensure that the relevant applications are not running before you invoke the commands below.

Firefox

cd
\find ~/.mozilla/firefox -name lock -type l -exec rm {} \;
\find ~/.mozilla/firefox -name .parentlock -size 0 -exec rm {} \;

Thunderbird

cd
\find ~/.*thunderbird -name lock -type l -exec rm {} \;
\find ~/.*thunderbird -name .parentlock -size 0 -exec rm {} \;

Google Chrome

\rm -f ~/.config/google-chrome/SingletonLock

If the above does not fix the problem:

mv "/homes/${USER}/.config/google-chrome/Default/Web Data" \
   "/homes/${USER}/.config/google-chrome/Default/Web Data.bak" 
mv "/homes/${USER}/.config/google-chrome/Default/History" \
   "/homes/${USER}/.config/google-chrome/Default/History.bak" 

In the extreme case that the above does not fix the problem, then you may wish to reset your Chrome configuration:

mv "/homes/${USER}/.config/google-chrome" \
   "/homes/${USER}/.config/google-chrome.bak"

Chromium

\rm -f ~/.config/chromium/SingletonLock

If the above does not fix the problem:

mv "~/.config/chromium/Default/Web Data" \
  "~/.config/chromium/Default/Web Data.bak" 
mv "~/.config/chromium/Default/History" \
  "~/.config/chromium/Default/History.bak" 

In the extreme case that the above does not fix the problem, then you may wish to reset your Chrome configuration:

mv "/homes/${USER}/.config/chromium" \
   "/homes/${USER}/.config/chromium.bak"

Eclipse

\rm -f ~/workspace/.metadata/.lock
 
 

guides/linux/locked-apps (last edited 2023-10-25 09:54:37 by ldk)