I get the following message when trying to sign into skype after my Ubuntu machine hasn't been shut down properly and skype was running:
"We can't open Skype. You are already signed in on this computer. Please sign out and try again."
I get the following message when trying to sign into skype after my Ubuntu machine hasn't been shut down properly and skype was running:
"We can't open Skype. You are already signed in on this computer. Please sign out and try again."
To fix the problem you will need to manually delete the lock files in your .Skype directory.
To do this, run these commands in terminal:
cd ~/.Skype
find ./ -name "*.lock" | xargs rm
find ./ -name "*.lck" | xargs rm
If nothing works, do this:
cd ~
rm -rf .Skype
This deletes the complete Skype-Configuration and you're existing and faulty session. .Skype will be recreated when you restart skype.
As Donal points out you need to get rid of the lock files in the ~/.Skype dir. I like this cmd better than Donal's merely because it's a one liner. I'd add this as comment to Donal's answer except I can't add code blocks in comments.
find ~/.Skype -regex ".*\.lo?ck" -exec rm {} \;
The above did not resolve it here on an Ubunto 12.04 installation. But what helped was removing the entire ~/.Skype subdirectory : sudo rm -R ~/.Skype It is remade by the Skype application the next login.
© 2022 - 2024 — McMap. All rights reserved.
sudo apt-get install sni-qt:i386
, killed the Skype process, removed the .lck file from .Skype (see answers below), and then re-opened from the launcher. The icon then appeared at the top right. – Pontefractpkill Skype
– Havener