Snapd: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:
systemctl enable --now snapd.socket
systemctl enable --now snapd.socket
ln -s /var/lib/snapd/snap /snap
ln -s /var/lib/snapd/snap /snap
</syntaxhighlight>
Reboot.
Ensure that snapd is up to date. As root:
<syntaxhighlight lang='bash'>
snap install core; snap refresh core
</syntaxhighlight>
</syntaxhighlight>

Revision as of 00:58, 18 November 2021

Internal

Overview

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