mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 12:15:27 +02:00
opkg: add page (#2035)
This commit is contained in:
parent
806162b4ab
commit
7c04145965
1 changed files with 31 additions and 0 deletions
31
pages/linux/opkg.md
Normal file
31
pages/linux/opkg.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue