Snap Store auf dem Raspberry Pi
Lerne, wie du den Snap Store auf deinem Raspberry Pi installierst und nutzt, um tausende Anwendungen einfach zu verwalten.
Learn how to install and use the Snap Store on your Raspberry Pi to easily manage thousands of applications.
Was ist Snap?
Snap ist ein universelles Paketsystem, das von Canonical (den Machern von Ubuntu) entwickelt wurde. Snap-Pakete sind eigenständige Anwendungen, die alle benötigten Abhängigkeiten enthalten und automatisch aktualisiert werden. Im Gegensatz zu klassischen .deb-Paketen funktionieren Snaps auf vielen verschiedenen Linux-Distributionen – auch auf Raspberry Pi OS.
Snap is a universal package system developed by Canonical (the makers of Ubuntu). Snap packages are self-contained applications that include all required dependencies and are automatically updated. Unlike classic .deb packages, Snaps work on many different Linux distributions – including Raspberry Pi OS.
Tipp
Snaps laufen in einer Sandbox-Umgebung, was sie sicherer macht. Jede App wird isoliert vom restlichen System ausgeführt.
Snaps run in a sandboxed environment, making them more secure. Each app runs isolated from the rest of the system.
Snapd installieren
Bevor du Snap-Pakete nutzen kannst, musst du den Snap-Daemon (snapd) installieren. Stelle zuerst sicher, dass dein System auf dem neuesten Stand ist:
Before you can use Snap packages, you need to install the Snap daemon (snapd). First make sure your system is up to date:
sudo apt update && sudo apt upgrade -y
Installiere jetzt snapd:
Now install snapd:
sudo apt install snapd -y
Nach der Installation ist ein Neustart empfohlen, damit alle Pfade korrekt geladen werden:
After installation, a reboot is recommended so that all paths are loaded correctly:
sudo reboot
Überprüfe nach dem Neustart, ob Snap korrekt funktioniert:
After the reboot, verify that Snap is working correctly:
snap version
Snap Store installieren
Der Snap Store ist die grafische Oberfläche zum Durchsuchen und Installieren von Snap-Paketen. Installiere ihn mit folgendem Befehl:
The Snap Store is the graphical interface for browsing and installing Snap packages. Install it with the following command:
sudo snap install snap-store
Die Installation kann einige Minuten dauern, da das Snap-Paket alle Abhängigkeiten enthält. Nach der Installation findest du den Snap Store im Anwendungsmenü deines Raspberry Pi.
The installation may take a few minutes since the Snap package contains all dependencies. After installation, you'll find the Snap Store in the application menu of your Raspberry Pi.
Tipp
Du kannst den Snap Store auch über das Terminal starten: snap-store. Falls die GUI nicht startet, stelle sicher, dass du eine Desktop-Umgebung installiert hast.
You can also launch the Snap Store via the terminal: snap-store. If the GUI doesn't start, make sure you have a desktop environment installed.
Snap Store verwenden
Du kannst Snap-Pakete sowohl über die grafische Oberfläche als auch über das Terminal verwalten. Hier sind die wichtigsten Befehle:
You can manage Snap packages both through the graphical interface and via the terminal. Here are the most important commands:
Nach einem Paket suchen:
Search for a package:
snap find
Ein Paket installieren:
Install a package:
sudo snap install
Installierte Pakete anzeigen:
List installed packages:
snap list
Ein Paket entfernen:
Remove a package:
sudo snap remove
Alle Snaps aktualisieren:
Update all Snaps:
sudo snap refresh
Beliebte Snaps für den Raspberry Pi
Hier sind einige nützliche Snap-Pakete, die auf dem Raspberry Pi gut funktionieren:
Here are some useful Snap packages that work well on the Raspberry Pi:
VLC Media Player – Ein leistungsstarker Mediaplayer:
VLC Media Player – A powerful media player:
sudo snap install vlc
Node-RED – Visuelles IoT-Programmiertool:
Node-RED – Visual IoT programming tool:
sudo snap install node-red
Nextcloud – Eigene Cloud-Lösung:
Nextcloud – Self-hosted cloud solution:
sudo snap install nextcloud
Pi-hole (über Snap verfügbar) – Netzwerkweiter Werbeblocker:
Pi-hole (available via Snap) – Network-wide ad blocker:
sudo snap install core && sudo snap install pi-hole
Tipp
Nicht alle Snaps sind für die ARM-Architektur des Raspberry Pi verfügbar. Prüfe vor der Installation auf snapcraft.io, ob das gewünschte Paket ARM/arm64 unterstützt.
Not all Snaps are available for the ARM architecture of the Raspberry Pi. Before installation, check on snapcraft.io whether the desired package supports ARM/arm64.