Virtualization for Slackware 13.1
Intro
You need to make sure your setup allows for virtualization. Check your CPU manual.
- kvm-73 kvm_intel won’t load in 2.6.26 64 bit kernel It was BIOS. I totally forgot that. Thanks trhodes!
- CPU flags and their meaning
Instruction
qcow2 is qemu copy on write second version. qcow2 is good, use it.
- Install qemu-kvm (
KVMGROUP=users sh qemu-kvm.SlackBuild
). modprobe kvm_intel
- Create an image (
qemu-img create -f qcow2 environment.img 50G
). I named mine “environment.” - Install the desired os (
sudo qemu-system-x86_64 -hda environment.img -cdrom /home/sifer/slackware-13.1-install-dvd.iso \ -boot d -m 384
). I needed another one to mess with the kernel. - Run the newly installed os (
sudo qemu-system-x86_64 -hda environment.img -m 512 -soundhw all -smp 4 -cpu host -no-acpi -snapshot -localtime -boot c -usb -usbdevice tablet -net [your network options here]
).
slackware
virtualization
kernel
qcow2
]