2018-03-20 12:42:35 +00:00
|
|
|
# opkg
|
|
|
|
|
|
|
|
> A lightweight package manager used to install OpenWrt packages.
|
2022-03-21 17:07:48 +00:00
|
|
|
> More information: <https://openwrt.org/docs/guide-user/additional-software/opkg>.
|
2018-03-20 12:42:35 +00:00
|
|
|
|
|
|
|
- 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)}}`
|
|
|
|
|
2020-12-04 12:37:44 +00:00
|
|
|
- Display information for a specific package:
|
2018-03-20 12:42:35 +00:00
|
|
|
|
|
|
|
`opkg info {{package}}`
|
|
|
|
|
|
|
|
- List all the available packages:
|
|
|
|
|
|
|
|
`opkg list`
|