1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh
name="qemu-test"
version="1.0"
help_message=$(/usr/bin/cat <<-EOF
Check if hardware and OS are capable of virtualization
Usage: qemu-test
Options:
-h, --help print this message and exit
-v, --version print version number and exit
EOF
)
. /usr/local/lib/myminiparse.sh
printf_then_exec() {
printf "%s\n" "$1"
$1
}
if ! LC_ALL=C lscpu | grep Virtualization >/dev/null 2>&1; then
printf "Virtualization is not supported by the CPU\n"
printf_then_exec "LC_ALL=C lscpu | grep Virtualization"
exit 1
elif ! zgrep CONFIG_KVM /proc/config.gz >/dev/null 2>&1; then
printf "Virtualization is not supported by the kernel\n"
printf_then_exec "zgrep CONFIG_KVM /proc/config.gz"
exit 1
elif ! lsmod | grep kvm >/dev/null 2>&1; then
printf "Kernel modules for virtualization support are not loaded\n"
printf_then_exec "lsmod | grep kvm"
exit 1
fi
exit 0