Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # alias
- alias pacsyy="sudo pacman -Syy" #update mirrors
- alias pacsu="sudo pacman -Su" #upgrade all packages
- alias pacinfo="sudo pacman -Si" #show information about a package
- alias pacq="pacman -Q" # query
- alias pacs="sudo pacman -S" #install package/s
- alias paclist="sudo pacman -Ql" #list all files installed by package
- alias paclistall="pacman -Qqm" #list all packages locally installed
- alias pacr="sudo pacman -R" #uninstall one or more package/s
- alias pacrns="sudo pacman -Rns" #uninstall package and deps
- alias pacorph="sudo pacman -Qdt" #list all packages which are orphaned
- alias pacown="pacman -Qo" #determine which package owns a given file
- alias pacsearch="sudo pacman -Ss" #search for a package
- alias pacachec="pacman -Sc" #delete all package files from cache
- alias ysearch="yaourt -Ss" #search for a package AUR
- alias yinstall="yaourt -S" #yaourt install package
- alias reboot="systemctl reboot" #reboot
- alias poweroff="systemctl poweroff" #reboot
- alias shutdown="systemctl poweroff" #poweroff
- alias supy="supybot Neo.conf" #execute supybot
- alias wee="weechat-curses" #execute weechat
- alias ncm="ncmpcpp" #execute ncmpcpp
- alias news="newsbeuter" #execute newsbeuter
- alias twit="pieppiep" #execure pieppiep
- alias twitr="pieppiep fetch 20" #fetch 20 twitter posts
- alias unetbootin="sudo unetbootin" #launch unetbootin
- alias gparted="sudo gparted" #launch gparted
- alias netlisten='lsof -i -P | grep LISTEN' #network monitor
- alias nstat="netstat -p TCP -eWc" #network monitor
- alias nstato="netstat -tuael --numeric-hosts --numeric-ports"
- alias pizza="sleep 10m && echo ⚠⚠⚠ pizza is done ⚠⚠⚠ " #get shell alert in 10 minutes
- alias userlist='cat /etc/passwd |grep "/bin/bash" |grep "[5-9][0-9][0-9]" |cut -d: -f1' #users
- alias age="sudo dumpe2fs $(mount | grep 'on \/ ' | awk '{print $1}') | grep 'Filesystem created:'" #age
- alias teamvstart="sudo systemctl start teamviewerd" #start teamviewer
- alias teamvstop="sudo systemctl stop teamviewerd" #stop teamviewer
- alias ytv="youtube-viewer -C" #youtube-viewer w/ colour
- alias ytdl="youtube-viewer -d" #youtube-viewer download -[URL]
- alias subs="youtube-viewer -C -S" #youtube-viewer w/ colour/subscriptions
- alias sshon="sudo systemctl start sshd.service" #startssh
- alias sshoff="sudo systemctl stop sshd.service" #stop ssh
- alias starwars="telnet towel.blinkenlights.nl" #starwars ascii
- alias coweru="cower -u" #Check foreign packages for updates in the AUR.
- alias cowers="cower -s" #search repo
- alias coweri="cower -i" #info
- alias makepkgi="makepkg -ci" #build,install
- alias makepkgsci="makepkg -sci" #build,getdeps,clean,install
- alias pacmanlog='tail -n 40 /var/log/pacman.log' #view pacman log
- alias errorlog='sudo tail -n 40 /var/log/errors.log' #view error log
- alias size='sudo du -hsx * | sort -rh | head -10' #list 10 dir/files by size
- alias sizeall='sudo du -a /var | sort -n -r | head -n 10' #list 10 dir by size
- alias uuid="ls /dev/disk/by-uuid/ -alh"
- alias du="du -h"
- alias cdd="cd .."
- alias toprun="ps axo %cpu,%mem,comm |sort -unr| head -n 9"
- alias hist="history 24"
- alias psusage="ps aux --sort=-%cpu | grep -m 11 -v `whoami`"
- alias lbig="ls -lSrh"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement