Page 1 of 1

[Solved] Load KVM kernel module every time after boots

Posted: 01 Sep 2016, 17:14
by xenos
Hi,

I just set up Android Studio on my pc, thinking about trying its emulator,

Code: Select all

# ./emulator-check accel
/dev/kvm is not found: VT disabled in BIOS or KVM kernel module not loaded

# modprobe kvm_intel

# ./emulator-check accel
KVM (version 12) is installed and usable.
Any idea how to load this every time after Porteus boots?

Re: Load KVM kernel module every time after boots

Posted: 01 Sep 2016, 17:27
by Bogomips

Code: Select all

su
echo modprobe kvm_intel >> /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
If using changes, otherwise same in rootcopy.

Re: Load KVM kernel module every time after boots

Posted: 01 Sep 2016, 17:35
by xenos
Great and thanks! :good: