2023-03-26 05:56:49 +01:00
|
|
|
# nala
|
|
|
|
|
|
|
|
> Package management Utility.
|
|
|
|
> Wrapper for the `apt` package manager.
|
|
|
|
> More information: <https://gitlab.com/volian/nala>.
|
|
|
|
|
|
|
|
- Install a package, or update it to the latest available version:
|
|
|
|
|
2023-05-09 11:12:56 +01:00
|
|
|
`sudo nala install {{package}}`
|
2023-03-26 05:56:49 +01:00
|
|
|
|
|
|
|
- Remove a package:
|
|
|
|
|
|
|
|
`sudo nala remove {{package}}`
|
|
|
|
|
|
|
|
- Remove a package and its configuration files:
|
|
|
|
|
|
|
|
`nala purge {{package}}`
|
|
|
|
|
|
|
|
- Search package names and descriptions using a word, regex (default) or glob:
|
|
|
|
|
2023-05-09 11:12:56 +01:00
|
|
|
`nala search "{{pattern}}"`
|
2023-03-26 05:56:49 +01:00
|
|
|
|
|
|
|
- Update the list of available packages and upgrade the system:
|
|
|
|
|
2023-05-09 11:12:56 +01:00
|
|
|
`sudo nala upgrade`
|
2023-03-26 05:56:49 +01:00
|
|
|
|
|
|
|
- Remove all unused packages and dependencies from your system:
|
|
|
|
|
2023-05-09 11:12:56 +01:00
|
|
|
`sudo nala autoremove`
|
2023-03-26 05:56:49 +01:00
|
|
|
|
|
|
|
- Fetch fast mirrors to improve download speeds:
|
|
|
|
|
2023-05-09 11:12:56 +01:00
|
|
|
`sudo nala fetch`
|
2023-03-26 05:56:49 +01:00
|
|
|
|
|
|
|
- Display the history of all transactions:
|
|
|
|
|
|
|
|
`nala history`
|