LinuxCommandLibrary

synopkg

Package management utility for Synology DiskStation Manager.

TLDR

List the names of installed packages

$ synopkg list --name
copy


List packages which depend on a specific package
$ synopkg list --depend-on [package]
copy


Start/Stop a package
$ sudo synopkg [start|stop] [package]
copy


Print the status of a package
$ synopkg status [package]
copy


Uninstall a package
$ sudo synopkg uninstall [package]
copy


Check if updates are available for a package
$ synopkg checkupdate [package]
copy


Upgrade all packages to the latest version
$ sudo synopkg upgradeall
copy


Install a package from a synopkg file
$ sudo synopkg install [path/to/package.spk]
copy

Copied to clipboard