GRUB_DEFAULT=0Once you made your changes issue the following command:
update-grubOnce you reboot the default selected item will be changed per your changes above.
Simplicity and elegance are unpopular because they require hard work and discipline to achieve and education to be appreciated. — Edsger W. Dijkstra
GRUB_DEFAULT=0Once you made your changes issue the following command:
update-grubOnce you reboot the default selected item will be changed per your changes above.
Computer Configuration\Windows Settings\ Security Settings\Local Policies\Security Options\ Shutdown: Allow system to be shut down without having to log on
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows] "ShutdownWarningDialogTimeout"=dword:00000001
virsh -c qemu:///system shutdown w2k3Once the above settings is enabled you should be able gracefully shutdown your windows guests using virtual machine ACPI power management.
VBoxManage clonehd --format RAW img.vdi img.raw
qemu-img convert -f raw -O qcow2 img.raw img.qcow2
apt-get install bridge-utils... and configure network interface (restart computer so network changes take place):
auto eth0
iface eth0 inet manual
auto br0
iface br0 inet static
address 192.168.10.11
netmask 255.255.255.0
network 192.168.10.0
broadcast 192.168.10.255
gateway 192.168.10.1
bridge_ports eth0
bridge_stp off
# 1.
bridge_fd 0
bridge_maxwait 0
# 2.
#bridge_fd 9
#bridge_hello 2
#bridge_maxage 12
apt-get -y install qemu-kvm libvirt-bin
adduser user1 libvirt
apt-get -y install virt-manager
update-rc.d ebtables disable update-rc.d libvirt-bin disable update-rc.d libvirt-guests disable update-rc.d lvm2 disable
echo 100 > /sys/kernel/mm/ksm/sleep_millisecs echo 1 > /sys/kernel/mm/ksm/runYou can take a look at pages sharing / shared:
cat /sys/kernel/mm/ksm/pages_sharing cat /sys/kernel/mm/ksm/pages_sharedAnother useful thing is to use vhost-net kernel module to boost virtual machine network performance (ensure guest vm uses virtio network device).
echo vhost-net >> /etc/modules
GRUB_CMDLINE_LINUX_DEFAULT="quiet elevator=noop"Update grub by issuing update-grub command.