ubuntu.plugin.zsh 3.57 KB
Newer Older
1
2
(( $+commands[apt] )) && APT=apt || APT=apt-get

3
4
5
6
alias acs='apt-cache search'

alias afs='apt-file search --regexp'

7
# These are apt/apt-get only
8
alias ags="$APT source"
9

10
alias acp='apt-cache policy'
11

12
13
14
#List all installed packages
alias agli='apt list --installed'

15
# superuser operations ######################################################
16
17
18
19

# List available updates only
alias aglu='sudo apt-get -u upgrade --assume-no'

20
21
22
alias afu='sudo apt-file update'

alias ppap='sudo ppa-purge'
23

24
alias age="sudo $APT"
25
26
27
28
29
30
31
32
33
34
35
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"
36
37
alias agar="sudo $APT autoremove"

38
39

# Remove ALL kernel images and headers EXCEPT the one in use
40
alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))'
41
42
43

# Misc. #####################################################################
# print all installed packages
44
alias allpkgs='dpkg --get-selections | grep -v deinstall'
45
46
47
48
49
50

# 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]
nextgenthemes's avatar
nextgenthemes committed
51
# If packagename is not given as 2nd argument the function will ask for it and guess the default by taking
52
# the part after the / from the ppa name which is sometimes the right name for the package you want to install
53
54
55
56
57
58
aar() {
	if [ -n "$2" ]; then
		PACKAGE=$2
	else
		read "PACKAGE?Type in the package name to install/upgrade with this ppa [${1##*/}]: "
	fi
59

60
61
62
	if [ -z "$PACKAGE" ]; then
		PACKAGE=${1##*/}
	fi
63

64
65
	sudo apt-add-repository $1 && sudo $APT update
	sudo $APT install $PACKAGE
66
67
68
69
70
71
72
73
74
}

# Prints apt history
# Usage:
#   apt-history install
#   apt-history upgrade
#   apt-history remove
#   apt-history rollback
#   apt-history list
Janosch Schwalm's avatar
Janosch Schwalm committed
75
# Based On: https://linuxcommando.blogspot.com/2008/08/how-to-show-apt-log-history.html
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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)
91
      zgrep --no-filename '' $(ls -rt /var/log/dpkg*)
92
93
94
95
96
97
98
99
100
101
102
103
104
105
      ;;
    *)
      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
kerndeb () {
106
107
108
109
110
  # 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
111

112
  make-kpkg clean
113

114
115
  time fakeroot make-kpkg --append-to-version "$appendage" --revision \
      "$revision" kernel_image kernel_headers
116
117
118
119
}

# List packages by size
function apt-list-packages {
120
121
122
123
  dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \
  grep -v deinstall | \
  sort -n | \
  awk '{print $1" "$2}'
124
}