You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
424 B
Plaintext

# apk is the tool used to install, upgrade, or delete software on a running system
# of Alpine Linux package management
# Install a package
apk add $package
# Remove a package
apk del $package
# Update repos
apk update
# Upgrade all packages
apk upgrade
# Find a package
apk search $package
# To list all installed packages, use:
apk info
# To determine which package a file belongs to:
apk info --who-owns /sbin/lbu