You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.9 KiB
138 lines
3.9 KiB
# Detect available package manager (prefer apt-fast > apt > apt-get) |
|
if (( $+commands[apt-fast] )); then |
|
APT=apt-fast |
|
elif (( $+commands[apt] )); then |
|
APT=apt |
|
else |
|
APT=apt-get |
|
fi |
|
|
|
alias acs='apt-cache search' |
|
|
|
alias afs='apt-file search --regexp' |
|
|
|
# These are apt/apt-get only |
|
if (( $+commands[apt] )); then |
|
alias ags="apt source" |
|
else |
|
alias ags="apt-get source" |
|
fi |
|
|
|
alias acp='apt-cache policy' |
|
|
|
#List all installed packages |
|
alias agli='apt list --installed' |
|
|
|
# List available updates only |
|
alias aglu='apt list --upgradable' |
|
|
|
alias acsp='apt-cache showpkg' |
|
compdef _acsp acsp='apt-cache showpkg' |
|
|
|
# superuser operations ###################################################### |
|
|
|
alias afu='sudo apt-file update' |
|
|
|
alias ppap='sudo ppa-purge' |
|
|
|
alias age="sudo $APT" |
|
alias aga="sudo $APT autoclean" |
|
alias agb="sudo $APT build-dep" |
|
alias agc="sudo $APT clean" |
|
alias agd="sudo $APT dselect-upgrade" |
|
alias agi="sudo $APT install" |
|
alias agp="sudo $APT purge" |
|
alias agr="sudo $APT remove" |
|
alias agu="sudo $APT update" |
|
alias agud="sudo $APT update && sudo $APT dist-upgrade" |
|
alias agug="sudo $APT upgrade" |
|
alias aguu="sudo $APT update && sudo $APT upgrade" |
|
alias agar="sudo $APT autoremove" |
|
|
|
|
|
# Remove ALL kernel images and headers EXCEPT the one in use |
|
alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))' |
|
|
|
# Misc. ##################################################################### |
|
# print all installed packages |
|
alias allpkgs='dpkg --get-selections | grep -v deinstall' |
|
|
|
# Create a basic .deb package |
|
alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc' |
|
|
|
# apt-add-repository with automatic install/upgrade of the desired package |
|
# Usage: aar ppa:xxxxxx/xxxxxx [packagename] |
|
# If packagename is not given as 2nd argument the function will ask for it and guess the default by taking |
|
# the part after the / from the ppa name which is sometimes the right name for the package you want to install |
|
function aar() { |
|
if [ -n "$2" ]; then |
|
PACKAGE=$2 |
|
else |
|
read "PACKAGE?Type in the package name to install/upgrade with this ppa [${1##*/}]: " |
|
fi |
|
|
|
if [ -z "$PACKAGE" ]; then |
|
PACKAGE=${1##*/} |
|
fi |
|
|
|
sudo apt-add-repository $1 && sudo $APT update |
|
sudo $APT install $PACKAGE |
|
} |
|
|
|
# Prints apt history |
|
# Usage: |
|
# apt-history install |
|
# apt-history upgrade |
|
# apt-history remove |
|
# apt-history rollback |
|
# apt-history list |
|
# Based On: https://linuxcommando.blogspot.com/2008/08/how-to-show-apt-log-history.html |
|
function apt-history() { |
|
case "$1" in |
|
install) |
|
zgrep --no-filename 'install ' $(ls -rt /var/log/dpkg*) |
|
;; |
|
upgrade|remove) |
|
zgrep --no-filename $1 $(ls -rt /var/log/dpkg*) |
|
;; |
|
rollback) |
|
zgrep --no-filename upgrade $(ls -rt /var/log/dpkg*) | \ |
|
grep "$2" -A10000000 | \ |
|
grep "$3" -B10000000 | \ |
|
awk '{print $4"="$5}' |
|
;; |
|
list) |
|
zgrep --no-filename '' $(ls -rt /var/log/dpkg*) |
|
;; |
|
*) |
|
echo "Parameters:" |
|
echo " install - Lists all packages that have been installed." |
|
echo " upgrade - Lists all packages that have been upgraded." |
|
echo " remove - Lists all packages that have been removed." |
|
echo " rollback - Lists rollback information." |
|
echo " list - Lists all contains of dpkg logs." |
|
;; |
|
esac |
|
} |
|
|
|
# Kernel-package building shortcut |
|
function kerndeb() { |
|
# temporarily unset MAKEFLAGS ( '-j3' will fail ) |
|
MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' ) |
|
print '$MAKEFLAGS set to '"'$MAKEFLAGS'" |
|
appendage='-custom' # this shows up in $(uname -r) |
|
revision=$(date +"%Y%m%d") # this shows up in the .deb file name |
|
|
|
make-kpkg clean |
|
|
|
time fakeroot make-kpkg --append-to-version "$appendage" --revision \ |
|
"$revision" kernel_image kernel_headers |
|
} |
|
|
|
# List packages by size |
|
function apt-list-packages { |
|
dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \ |
|
grep -v deinstall | \ |
|
sort -n | \ |
|
awk '{print $1" "$2}' |
|
}
|
|
|