How to remove Skype?
Solution 1:
Run:
sudo apt-get --purge remove skypeforlinux
Solution 2:
-
Click the "Ubuntu" button, type "Terminal" (without the quotations) and then press Enter.
-
Type
sudo apt-get --purge remove skypeforlinux
(earlier package name wasskype
) and then press Enter -
Enter your Ubuntu password to confirm that you wish to completely remove Skype and then press Enter
-
Click the "Ubuntu" button, type "Home" (without the quotations) and then press Enter to open your home folder.
-
Press Ctrl-H to display hidden folders. Locate and delete the ".skype" folder. Copied and pasted...
Solution 3:
GUI method : Right click on Skype in app drawer and click Show details. You'll be redirected to Ubuntu Software Center. From there you can on uninstall. This would I call the easiest method.
CLI method: Open terminal and run sudo snap remove skype
and if this doesn't work try sudo apt-get --purge remove skype
Read more:
- Sergiy Kolodyazhnyy's answer to What is the Snap packaging format?
Solution 4:
After removing Skype, you are to remove the remaining directories.
- From your home directory write in the terminal command
find . -name Skype
- You will get the answer
./.config/Skype
- Go to the config directory
cd .config
and then typels
- You will see two directories named skype: Skype and skypeforlinux
-
rm -r Skype skypeforlinux
And it's done.