Snapd: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 3: Line 3:


=Overview=
=Overview=
<code>snapd</code> it’s the background service that manages and maintains the snaps on a Linux system. Snaps are programs that are packaged with all their dependencies to run on all major Linux distros. Moreover, snaps run confined within a restrictive security sandbox. Therefore, they are secure. In addition, snaps get updated automatically. So we don’t need to keep checking for updates manually.
=Installation=
=Installation=
{{External|https://snapcraft.io/docs/installing-snap-on-centos}}
{{External|https://snapcraft.io/docs/installing-snap-on-centos}}

Revision as of 03:07, 13 December 2022

Internal

Overview

snapd it’s the background service that manages and maintains the snaps on a Linux system. Snaps are programs that are packaged with all their dependencies to run on all major Linux distros. Moreover, snaps run confined within a restrictive security sandbox. Therefore, they are secure. In addition, snaps get updated automatically. So we don’t need to keep checking for updates manually.

Installation

https://snapcraft.io/docs/installing-snap-on-centos

As root:

yum install -y epel-release
yum install -y snapd
systemctl enable --now snapd.socket
ln -s /var/lib/snapd/snap /snap

Reboot.

Ensure that snapd is up to date. As root:

snap install core; snap refresh core