Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

41
linux/synopkg Normal file
View File

@@ -0,0 +1,41 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# synopkg
> Package management utility for Synology DiskStation Manager.
> More information: <https://www.synology.com/dsm>.
- List the names of installed packages:
`synopkg list --name`
- List 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 upgradeall`
- Install a package from a synopkg file:
`sudo synopkg install {{path/to/package.spk}}`