How to Install and Use Snap Applications in Linux

By | September 1, 2018

install_snap_banner_fossnaija

Snaps applications (snaps) are apps that are bundled using the snap software package distribution system; that was developed by canonical (the company behind the development of ubuntu Linux distribution). And it has become a major way some popular desktops apps are installed on ubuntu. And many other Linux distribution also now supports snap packages.

The snap DEAMON (snapd):

Before snaps can be used on any Linux system, snapd (the snap deamon), has to be installed first. Snapd can be installed in many popular Linux distributions (distros) as follows;

Ubuntu:

Snapd is installed by default in ubuntu 16.04, so you’re ready to start installing apps immediately.

For the older 14.04 LTS (trusty) release or any flavour (e.g. Lubuntu) which doesn’t include snapd by default, you have to install it manually from the archive:

 sudo apt update sudo apt install snapd

Fedora:

You can install the snapd package with:

sudo dnf install snapd

Snaps using classic confinement, such as code editors, also require a symlink from /var/lib/snapd/snap to /snap:

sudo ln -s /var/lib/snapd/snap /snap

Arch Linux:

Run the following command to install the package using yaourt AUR helper:

 yaourt -S snapd

Once installed, enable the systemd unit which is responsible to manage the main communication socket for snapd manually:

sudo systemctl enable --now snapd.socket

Restart the computer for post-install changes to take effect.

Check here to get how to install it in other Linux distributions.

Find and Install Snaps

Once snapd is installed in your system you can search for snaps like this:

snap find <app_name or description>

The command searches for all snaps that are related to “email”. And If the command is used without any description or snap name; some popular snaps are returned:

snap_find_command_result

The Snap Store contains both public and private snaps.

You can install snaps using the command-line like this:

snap install <package_name>

Or if you prefer using the graphical interface, head over to the snaps store or the snap app repository maintained by Brian Douglass to install snaps with a click of a button or download the snap package to install yourself.

View Installed Snaps

To view all the snaps installed on your system use snap list command. The command also provides information on the software version, revision number, developer, and any extra notes provided with the snap.

snap_list_command

Removing Snaps

To remove any snap application from your system, use the command:

snap remove <snap_name>

By default all the snap revisions are removed, including their data and the common data directory.

For full snap commands check here.

 

Happy Linux’NG!


NEVER MISS AN UPDATE




I agree to have my personal information transfered to MailChimp ( more information )

Join over 10,000 visitors to receive Open Source tips, trick, news, tutorials, programming and more.

We hate spam. Your email address will not be sold or shared with anyone else.

ALEXANDER OMOROKUNWA
MUST READ  5 myths busted: Using open source in higher education

3 thoughts on “How to Install and Use Snap Applications in Linux

  1. Timmy Crackers

    How do you install development packages so I can compile my own programs and such?

    Reply

Tell us what you think

This site uses Akismet to reduce spam. Learn how your comment data is processed.