Есть debian 7.3, qemu-kvm. в rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
# add time zone MSK
TZ='MSK-3'; export TZ
# mount second disk to /mnt/backup
mount -t ext3 /dev/sdb1 /mnt/backup
# add root alias
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
alias ducks='for i in G M K; do du -ah | grep [0-9]$i | sort -nr -k 1; done | head -n 15'
alias duhsx='du -hsx * | sort -rh | head -n 20'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias grep='grep --color=auto'
alias l='ls -CF'
alias la='ls -A'
alias ll='ls -alF'
alias ls='ls --color=auto'
##====== link to Ex =========
ip link add link eth4 name eth4.607 type vlan id 607
ip link set dev eth4.607 up
ip addr add 10.94.7.8/26 dev eth4.607
ip r add 10.94.3.0/24 via 10.94.7.8 dev eth4.607
# ip route chan default via 10.94.7.30
# ip route vk it 10.94.1.0/24
ip r add 10.94.1.0/24 via 10.94.7.8
##======== Icinga web 10.94.7.5 ========
ip link add link eth3 name eth3.50 type vlan id 50
ip link add link eth3 name eth3.607 type vlan id 607
ip link add link eth3 name eth3.1 type vlan id 1
ip link set dev eth3.50 up
ip link set dev eth3.607 up
ip link set dev eth3.1 up
exit 0