~dricottone/my-utils

my-utils/emulation/qemu-test -rwxr-xr-x 1.0 KiB
a5400e39Dominic Ricottone Starting point for cryptographic utilities 2 years ago
                                                                                
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
36
37
38
39
40
41
42
43
#!/bin/sh

name="qemu-test"
version="1.1"
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

error_msg() {
  if [ "$quiet" -eq 0 ]; then
    (>&2 /usr/bin/printf "%s: %s\n" "$name" "$1")
  fi
}

noisily_exec() {
  if [ "$quiet" -eq 0 ]; then
    /usr/bin/printf "%s\n" "$1"
    $1
  fi
}

if ! LC_ALL=C lscpu | grep Virtualization >/dev/null 2>&1; then
  error_msg "Virtualization is not supported by the CPU"
  noisily_exec "LC_ALL=C lscpu | grep Virtualization"
  exit 1
elif ! zgrep CONFIG_KVM /proc/config.gz >/dev/null 2>&1; then
  error_msg "Virtualization is not supported by the kernel"
  noisily_exec "zgrep CONFIG_KVM /proc/config.gz"
  exit 1
elif ! lsmod | grep kvm >/dev/null 2>&1; then
  error_msg "Kernel modules for virtualization support are not loaded"
  noisily_exec "lsmod | grep kvm"
  exit 1
fi
exit 0