Ubuntu/snaps: Difference between revisions
< Ubuntu
(Created page with " Introduction to snaps | Ubuntu https://ubuntu.com/core/services/guide/snaps-intro") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Snaps == | |||
Introduction to snaps | Ubuntu | Introduction to snaps | Ubuntu | ||
https://ubuntu.com/core/services/guide/snaps-intro | https://ubuntu.com/core/services/guide/snaps-intro | ||
== Install Snap Service == | |||
sudo apt update | |||
sudo apt install snapd | |||
== Install hello-world Snap == | |||
sudo snap install hello-world == | |||
Test: | |||
hello-world | |||
This installed to | |||
/snap/bin/hello-world | |||
== List Snaps == | |||
snap list | |||
== Remove Snap Service == | |||
sudo apt remove snapd | |||
== keywords == |
Latest revision as of 19:49, 21 January 2024
Snaps
Introduction to snaps | Ubuntu https://ubuntu.com/core/services/guide/snaps-intro
Install Snap Service
sudo apt update sudo apt install snapd
Install hello-world Snap
sudo snap install hello-world ==
Test:
hello-world
This installed to
/snap/bin/hello-world
List Snaps
snap list
Remove Snap Service
sudo apt remove snapd