1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 17:22:10 +02:00
tldr/pages/linux/opkg.md
2018-03-20 12:42:35 +00:00

31 lines
481 B
Markdown

# opkg
> A lightweight package manager used to install OpenWrt packages.
- Install a package:
`opkg install {{package}}`
- Remove a package:
`opkg remove {{package}}`
- Update the list of available packages:
`opkg update`
- Upgrade all the installed packages:
`opkg upgrade`
- Upgrade one or more specific package(s):
`opkg upgrade {{package(s)}}`
- Display informations for a specific package:
`opkg info {{package}}`
- List all the available packages:
`opkg list`