Last active
December 18, 2021 15:42
-
-
Save lajosbencz/333891e625f63a5b6c072e6f3f5188f5 to your computer and use it in GitHub Desktop.
Ubuntu 20 disable snapd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
systemctl stop snapd && systemctl disable snapd && systemctl mask snapd && \ | |
apt purge snapd -y && \ | |
rm -fr ~/snap /snap /var/snap /var/lib/snapd /var/cache/snapd /usr/lib/snapd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment