Manjaro Snap

Snap

From Manjaro
Revision as of 16:13, 19 December 2020 by Oguzkagan (talk | contribs) (Updated style and added translate tags)
Other languages:
English • ‎français • ‎русский • ‎فارسی



Overview

Snaps are a distro independent method for packaging and distributing Linux software.


Using software distributed by Snap has a couple of distinct advantages:

  • Software that is not compatible with current system libraries will still work when packaged as a Snap
  • Snaps are automatically updated


There are some other considerations to be aware of:

  • Snaps do not always integrate with system themes
  • Snaps may need to install shared run-times which consume disk space

Installing Support for Snaps

To use Snaps you to install and configure the Snap Daemon. It is available in the Manjaro repos as snapd and can be installed with your favorite package manager or using the command
user $ pamac install snapd COPY TO CLIPBOARD

Once installed, you need to enable snapd using the command:

user $ sudo systemctl enable --now snapd.socket COPY TO CLIPBOARD


If you also want support for classic snaps you can use the command:

user $ ln -s /var/lib/snapd/snap /snap COPY TO CLIPBOARD


Using Snaps

Managing Snaps via Discover

Kdediscover.png

Once installed you can run Discover and you will be able to browse and install Snaps with a familiar store interface.


Tip
Discover can also install and update software from the Manjaro repos if you install the package packagekit-qt5

Managing Snaps via Gnome Software

Gnomesoftware.png

Once installed you can run Software and you will be able to browse and install Snaps with a familiar store interface.


Tip
Gnome Software can also install and update software from the Manjaro repos

Managing Snaps via the CLI

Finding and Installing Snaps

You can use the command snap search to search for available Snaps. For example, if you wanted to install VLC here is what it might look like:

user $ snap search vlc COPY TO CLIPBOARD

Name            Version                 Publisher  Notes  Summary
vlc             3.0.6                   videolan✓  -      The ultimate media player
dav1d           0.2.0-1-ge29cb9a        videolan✓  -      AV1 decoder from VideoLAN
mjpg-streamer   2.0                     ogra       -      UVC webcam streaming tool
audio-recorder  3.0.5+rev1432+pkg-7b07  brlin      -      A free audio-recorder for Linux

From this output we can see that VLC and some related applications are avialable. To install VLC, we would use the command

user $ snap install vlc COPY TO CLIPBOARD

This will install the application as well as any required run-times. Once the application is installed you should be able to run it from your menu as you would with any application.

Displaying Detailed Snap Information

You can get more details about a specific Snap using the command snap info. For example:

user $ snap info vlc COPY TO CLIPBOARD

name:      vlc
summary:   The ultimate media player
publisher: VideoLAN✓
contact:   https://www.videolan.org/support/
license:   GPL-2.0+
description: |
  VLC is the VideoLAN project's media player.
  
  Completely open source and privacy-friendly, it plays every multimedia file and streams.
  
  It notably plays MKV, MP4, MPEG, MPEG-2, MPEG-4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3,
  Ogg/Vorbis files, BluRays, DVDs, VCDs, podcasts, and multimedia streams from various network
  sources. It supports subtitles, closed captions and is translated in numerous languages.
snap-id: RT9mcUhVsRYrDLG8qnvGiy26NKvv6Qkd
channels:
  stable:    3.0.6                      2019-01-10  (770) 212MB -
  candidate: 3.0.6                      2019-01-10  (770) 212MB -
  beta:      3.0.6-341-g18d7d08         2019-05-24 (1020) 212MB -
  edge:      4.0.0-dev-8011-gfdbf7317e0 2019-05-24 (1019) 335MB -

Getting a list of installed Snaps

To show a list of all the Snaps and run-times that are currently installed you can use the command:

user $ snap list COPY TO CLIPBOARD


Removing Snaps

You can remove Snaps with the command snap remove. For example:

user $ snap remove vlc COPY TO CLIPBOARD


Removing Snap Support

If you want to remove support for snaps from the system, you can do so with a few simple steps.

First, check if you have gnome-software-snap or discover-snap installed.

user $ pamac list -i COPY TO CLIPBOARD

If you find either of those packages, replace them with the non-snap versions. For example, if gnome-software-snap was on that list you can replace it with:

user $ pamac install gnome-software COPY TO CLIPBOARD


Next, remove snapd itself

user $ pamac remove snapd COPY TO CLIPBOARD


Optionally, you can also remove the remaining snapd files which would include any installed snaps.

user $ sudo rm -r /var/lib/snapd COPY TO CLIPBOARD


Cookies help us deliver our services. By using our services, you agree to our use of cookies.