Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Add Solus install instructions #92
Merged
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
Jump to file or symbol
Failed to load files and symbols.
| @@ -0,0 +1,31 @@ | ||
| +--- | ||
| +title: Install snapd on Solus | ||
| +--- | ||
| + | ||
| +snapd packages for Solus are available from the official | ||
| +distribution repositories. | ||
| + | ||
| +## Solus 3 (and above) | ||
| + | ||
| +Solus includes snapd by default starting with the Solus 3 release. No installation steps are required and you can use snapd directly. | ||
| + | ||
| +### For older versions | ||
| + | ||
| +Ensure your packages are up to date and install the snapd package with: | ||
| + | ||
| +``` | ||
| +$ sudo eopkg up | ||
| +$ sudo eopkg install snapd | ||
| +``` | ||
| + | ||
| +Then reboot to ensure AppArmor and snapd are initialized: | ||
| + | ||
| +``` | ||
| +$ sudo reboot | ||
| +``` | ||
| + | ||
| +Now everything is set up to get you started with snaps. | ||
| + | ||
| +## Next Steps | ||
| + | ||
| + * [Using snaps](usage) |