kvm_ok=$(cat /sys/module/kvm_intel/parameters/nested)
     if [[ $kvm_ok == 'N' ]]; then
         echo "Enable Intel Nested-Virtualization"
-        rmmod kvm-intel
-        echo 'options kvm-intel nested=y' >> /etc/modprobe.d/dist.conf
-        modprobe kvm-intel
+        sudo rmmod kvm-intel
+        echo 'options kvm-intel nested=y' | sudo tee --append /etc/modprobe.d/dist.conf
+        sudo modprobe kvm-intel
     fi
 else
     kvm_ok=$(cat /sys/module/kvm_amd/parameters/nested)
     if [[ $kvm_ok == '0' ]]; then
         echo "Enable AMD Nested-Virtualization"
-        rmmod kvm-amd
-        sh -c "echo 'options kvm-amd nested=1' >> /etc/modprobe.d/dist.conf"
-        modprobe kvm-amd
+        sudo rmmod kvm-amd
+        echo 'options kvm-amd nested=1' | sudo tee --append /etc/modprobe.d/dist.conf
+        sudo modprobe kvm-amd
     fi
 fi
-modprobe vhost_net
+sudo modprobe vhost_net
 
 ${INSTALLER_CMD} ${packages[@]}
 if ! which pip; then
     sudo systemctl enable rpc-statd
     sudo systemctl start rpc-statd
 
-    kvm-ok
+    case ${ID,,} in
+        ubuntu|debian)
+        kvm-ok
+        ;;
+    esac
 fi