alias ll="ls -lah"
runuser otrs -c 'perl otrs.Console.pl'
aptitude install apache2 php5-gd libgd2-xpm-dev libapache2-mod-php5 gcc make
perl -MCPAN -e "install Number::Format"
/etc/sysctl.conf
net.ipv4.ip_forward=1

/etc/rc.local
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
allow-hotplug eth1
iface eth1 inet static
        address 172.16.11.10
        netmask 255.255.255.0
        network 172.16.11.0
        broadcast 172.16.11.255
post-up ip route add default via 10.10.0.1 dev eth1 table rt2

iptables -t mangle -A PREROUTING -d 172.16.11.101 -j TEE --gateway 172.16.22.22
iptables -t mangle -A PREROUTING -s 172.16.11.101 -j TEE --gateway 172.16.22.22
tcpdump -l | tee out.log
iptables -t mangle -F

aptitude remove rdnssd

iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080

/usr/sbin/tcpdump  -i  eth0 -n -nn -ttt 'port 8080'

PS1='${debian_chroot:+($debian_chroot)}\[\033[00;32m\]\u\[\033[00m\]\[\033[00;31m\]@\[\033[00m\]\[\033[00;34m\]\h\[\033[00m\]\[\033[00;31m\]:\[\033[00m\]\[\033[00;33m\]\w\[\033[00m\]# '
export LS_OPTIONS='--color=auto'
eval "`dircolors`"
alias ls='ls $LS_OPTIONS'

SET PASSWORD FOR 'root'@'localhost' = PASSWORD('MyNewPass');

select host,user from mysql.user;