1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/apk.md

29 lines
491 B
Markdown
Raw Normal View History

2018-02-08 13:39:45 +05:30
# apk
> Alpine Linux package management tool.
> More information: <https://manned.org/apk>.
2018-02-08 13:39:45 +05:30
- Update repository indexes from all remote repositories:
`apk update`
- Install a new package:
`apk add {{package}}`
- Remove a package:
`apk del {{package}}`
2022-10-20 18:16:15 +02:00
- Repair a package or upgrade it without modifying main dependencies:
2018-02-08 13:39:45 +05:30
`apk fix {{package}}`
2022-10-20 18:16:15 +02:00
- Search for a package via keywords:
2018-02-08 13:39:45 +05:30
2022-10-20 18:16:15 +02:00
`apk search {{keywords}}`
2018-02-08 13:39:45 +05:30
2022-10-20 18:16:15 +02:00
- Display information about a specific package:
2018-02-08 13:39:45 +05:30
`apk info {{package}}`