In Elive, you can find shortcuts for apt commands alias | grep "apt"
but here are the most important ones —
-
api
: install (shortcut toapt install
) -
apu
: update cache (shortcut toapt update
) -
apui
update cache and install (shortcut toapt update && apt install
) -
apug
: upgrade system (shortcut toapt update && apt upgrade
; better to useelive-upgrader
which is run on desktop startup) -
apif
: resolve broken dependencies (apt install -f
) -
apse
: search packages (apt search
) -
apir
: uninstall and reinstall packages, useful for switching to Devuan and stuff -
apsh
:apt-cache show
, used for showing packages based on their exact name -
apr
:apt-get remove
, self-explanatory -
appo
:apt policy
, can help with debugging server side apt thingies and finding versions
There are more (run alias | grep "apt"
to see a list) but those are the ones i use most