Skip to content

Instantly share code, notes, and snippets.

View yam-1111's full-sized avatar

Anthony John yam-1111

View GitHub Profile
@yam-1111
yam-1111 / qemu_start.sh
Last active September 12, 2023 10:46
qemu start
#!/bin/bash
if [ -c /dev/kvm ]; then
is_kvm="True"
sudo apt install kmod -y
sudo modprobe -r kvm_intel
else
is_kvm="False"
fi