• Skip to main content

Uly.me

cloud engineer

  • Home
  • About
  • Archives

snap

How To Remove Snap

July 7, 2020 by Ulysses

Snap is cool, but not for everyone. To remove, follow these steps.

# get list
snap list
# remove snaps. repeat for each app.
snap remove chromium
# remove snapd
apt purge snapd
# remove snap from home
rm -rf ~/snap
# clean up cache
rm -rf /var/cache/snapd
apt purge snapd

# get list snap list # remove snaps. repeat for each app. snap remove chromium # remove snapd apt purge snapd # remove snap from home rm -rf ~/snap # clean up cache rm -rf /var/cache/snapd apt purge snapd

Filed Under: Linux Tagged With: purge, remove, snap, ubuntu

Snap Packages

July 13, 2018 by Ulysses

Ubuntu 16.04 has a feature called Snap packaging. Snaps are containerized software packages that are simple to create, and easy to install on all major Linux systems. Snap packages are self-contained and separate from your system files. There are no complex dependencies or interference. The packages are safe to run since snap packages and their data are separate from your system files. Updates are automatic and only download what has changed. You can revert to a previous version at any time. Any updates can also be reversed.

To install snap in Ubuntu, run this command from the Terminal.

$ sudo apt install snapd

$ sudo apt install snapd

To install snap packages, run the following:

$ sudo snap install packagename

$ sudo snap install packagename

To get a list of packages installed on your system:

$ snap list

$ snap list

To automatically update the packages, just run the following:

$ sudo snap refresh packagename

$ sudo snap refresh packagename

To revert changes or remove a package, perform the following:

$ sudo snap revert packagename
$ sudo snap remove packagename

$ sudo snap revert packagename $ sudo snap remove packagename

Super easy to use.

Filed Under: Linux Tagged With: containers, snap, ubuntu

  • Home
  • About
  • Archives

Copyright © 2012–2022