snippetbashTip
synopkg — Package management utility for Synology DiskStation Manager. More information: <https://www.synology
Viewed 0 times
managementcommandsynopkgsynologyclipackageforutility
linux
Problem
How to use the
synopkg command: Package management utility for Synology DiskStation Manager. More information: <https://www.synology.com/dsm>.Solution
synopkg — Package management utility for Synology DiskStation Manager. More information: <https://www.synology.com/dsm>.List the names of installed packages:
synopkg list --nameList packages which depend on a specific package:
synopkg list --depend-on {{package}}Start/Stop a package:
sudo synopkg {{start|stop}} {{package}}Print the status of a package:
synopkg status {{package}}Uninstall a package:
sudo synopkg uninstall {{package}}Check if updates are available for a package:
synopkg checkupdate {{package}}Upgrade all packages to the latest version:
sudo synopkg upgradeallInstall a package from a synopkg file:
sudo synopkg install {{path/to/package.spk}}Code Snippets
List the names of installed packages
synopkg list --nameList packages which depend on a specific package
synopkg list --depend-on {{package}}Start/Stop a package
sudo synopkg {{start|stop}} {{package}}Print the status of a package
synopkg status {{package}}Uninstall a package
sudo synopkg uninstall {{package}}Context
tldr-pages: linux/synopkg
Revisions (0)
No revisions yet.