mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-12-14 02:52:03 +08:00
新增kvm检测
This commit is contained in:
132
VM-source/kvm-ok
Executable file
132
VM-source/kvm-ok
Executable file
@@ -0,0 +1,132 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# kvm-ok - check whether the CPU we're running on supports KVM acceleration
|
||||||
|
# Copyright (C) 2008-2010 Canonical Ltd.
|
||||||
|
#
|
||||||
|
# Authors:
|
||||||
|
# Dustin Kirkland <kirkland@canonical.com>
|
||||||
|
# Kees Cook <kees.cook@canonical.com>
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License version 3,
|
||||||
|
# as published by the Free Software Foundation.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
set -e
|
||||||
|
|
||||||
|
assert_root() {
|
||||||
|
if [ "$(id -u)" != "0" ]; then
|
||||||
|
echo "INFO: For more detailed results, you should run this as root"
|
||||||
|
echo "HINT: sudo $0"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
verdict() {
|
||||||
|
# Print verdict
|
||||||
|
if [ "$1" = "0" ]; then
|
||||||
|
echo "KVM acceleration can be used"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
echo "KVM acceleration can NOT be used"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
ARM_CPU_PART_CORTEX_A15="0xc0f" # <asm/cputype.h>
|
||||||
|
|
||||||
|
# check cpu flags for capability
|
||||||
|
case "$(uname -m)" in
|
||||||
|
armv7l)
|
||||||
|
if egrep -m1 -w '^CPU part[[:blank:]]*:' /proc/cpuinfo | \
|
||||||
|
egrep -wq "$ARM_CPU_PART_CORTEX_A15"; then
|
||||||
|
virt="ARM"
|
||||||
|
kvm_mod="kvm"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
aarch64)
|
||||||
|
virt="ARM"
|
||||||
|
kvm_mod="kvm"
|
||||||
|
;;
|
||||||
|
ppc64le|ppc64|s390x)
|
||||||
|
# FIXME: Assume that all POWER and z/Systems are KVM capable
|
||||||
|
virt="generic"
|
||||||
|
kvm_mod="kvm"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
virt=$(egrep -m1 -w '^flags[[:blank:]]*:' /proc/cpuinfo | egrep -wo '(vmx|svm)') || true
|
||||||
|
[ "$virt" = "vmx" ] && kvm_mod="kvm_intel"
|
||||||
|
[ "$virt" = "svm" ] && kvm_mod="kvm_amd"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -z "$virt" ]; then
|
||||||
|
echo "INFO: Your CPU does not support KVM extensions"
|
||||||
|
assert_root
|
||||||
|
verdict 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Now, check that the device exists
|
||||||
|
if [ -e /dev/kvm ]; then
|
||||||
|
echo "INFO: /dev/kvm exists"
|
||||||
|
verdict 0
|
||||||
|
else
|
||||||
|
echo "INFO: /dev/kvm does not exist"
|
||||||
|
echo "HINT: sudo modprobe $kvm_mod"
|
||||||
|
fi
|
||||||
|
|
||||||
|
assert_root
|
||||||
|
|
||||||
|
# Prepare MSR access
|
||||||
|
msr="/dev/cpu/0/msr"
|
||||||
|
if [ ! -r "$msr" ]; then
|
||||||
|
modprobe msr
|
||||||
|
fi
|
||||||
|
if [ -e "$msr" -a ! -r "$msr" ]; then
|
||||||
|
echo "You must be root to run this check." >&2
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "INFO: Your CPU supports KVM extensions"
|
||||||
|
|
||||||
|
disabled=0
|
||||||
|
# check brand-specific registers
|
||||||
|
if [ "$virt" = "vmx" ]; then
|
||||||
|
BIT=$(rdmsr --bitfield 0:0 0x3a 2>/dev/null || true)
|
||||||
|
if [ "$BIT" = "1" ]; then
|
||||||
|
# and FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX clear (no tboot)
|
||||||
|
BIT=$(rdmsr --bitfield 2:2 0x3a 2>/dev/null || true)
|
||||||
|
if [ "$BIT" = "0" ]; then
|
||||||
|
disabled=1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
elif [ "$virt" = "svm" ]; then
|
||||||
|
BIT=$(rdmsr --bitfield 4:4 0xc0010114 2>/dev/null || true)
|
||||||
|
if [ "$BIT" = "1" ]; then
|
||||||
|
disabled=1
|
||||||
|
fi
|
||||||
|
elif [ "$virt" = "ARM" ]; then
|
||||||
|
# Should also test that we booted in HYP mode, if detectable
|
||||||
|
:
|
||||||
|
elif [ "$virt" = "generic" ]; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
echo "FAIL: Unknown virtualization extension: $virt"
|
||||||
|
verdict 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$disabled" -eq 1 ]; then
|
||||||
|
echo "INFO: KVM ($virt) is disabled by your BIOS"
|
||||||
|
echo "HINT: Enter your BIOS setup and enable Virtualization Technology (VT),"
|
||||||
|
echo " and then hard poweroff/poweron your system"
|
||||||
|
verdict 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
verdict 0
|
||||||
@@ -301,3 +301,30 @@ void MainWindow::on_delQemuDiskButton_clicked()
|
|||||||
}
|
}
|
||||||
QMessageBox::information(this, "提示", "移除成功");
|
QMessageBox::information(this, "提示", "移除成功");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_kvmTest_clicked()
|
||||||
|
{
|
||||||
|
if(system("which kvm-ok")&& !QFile::exists(QCoreApplication::applicationDirPath() + "/kvm-ok")){
|
||||||
|
QMessageBox::critical(this, "错误", "未识别到命令 kvm-ok\n可以使用命令 sudo apt install cpu-checker 安装");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
QString kvm_ok_path = "kvm-ok";
|
||||||
|
if(!system("which kvm-ok")){
|
||||||
|
kvm_ok_path = "kvm-ok";
|
||||||
|
}
|
||||||
|
else if(QFile::exists(QCoreApplication::applicationDirPath() + "/kvm-ok")){
|
||||||
|
kvm_ok_path = QCoreApplication::applicationDirPath() + "/kvm-ok";
|
||||||
|
}
|
||||||
|
qDebug() << "使用" << kvm_ok_path;
|
||||||
|
QProcess process;
|
||||||
|
process.start(kvm_ok_path);
|
||||||
|
process.waitForStarted();
|
||||||
|
process.waitForFinished();
|
||||||
|
if(process.exitCode()){
|
||||||
|
QMessageBox::critical(this, "错误", "您的系统不支持使用 kvm:\n" + process.readAll());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
QMessageBox::information(this, "提示", "您的系统支持使用 kvm:\n" + process.readAll());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -44,6 +44,8 @@ private slots:
|
|||||||
|
|
||||||
void on_delQemuDiskButton_clicked();
|
void on_delQemuDiskButton_clicked();
|
||||||
|
|
||||||
|
void on_kvmTest_clicked();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
long m_cpuAll;
|
long m_cpuAll;
|
||||||
|
|||||||
@@ -174,6 +174,13 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QPushButton" name="kvmTest">
|
||||||
|
<property name="text">
|
||||||
|
<string>kvm 测试</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QPushButton" name="qemuSetting">
|
<widget class="QPushButton" name="qemuSetting">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
|
|||||||
132
VM/kvm-ok
Executable file
132
VM/kvm-ok
Executable file
@@ -0,0 +1,132 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# kvm-ok - check whether the CPU we're running on supports KVM acceleration
|
||||||
|
# Copyright (C) 2008-2010 Canonical Ltd.
|
||||||
|
#
|
||||||
|
# Authors:
|
||||||
|
# Dustin Kirkland <kirkland@canonical.com>
|
||||||
|
# Kees Cook <kees.cook@canonical.com>
|
||||||
|
#
|
||||||
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License version 3,
|
||||||
|
# as published by the Free Software Foundation.
|
||||||
|
#
|
||||||
|
# This program is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
set -e
|
||||||
|
|
||||||
|
assert_root() {
|
||||||
|
if [ "$(id -u)" != "0" ]; then
|
||||||
|
echo "INFO: For more detailed results, you should run this as root"
|
||||||
|
echo "HINT: sudo $0"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
verdict() {
|
||||||
|
# Print verdict
|
||||||
|
if [ "$1" = "0" ]; then
|
||||||
|
echo "KVM acceleration can be used"
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
echo "KVM acceleration can NOT be used"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
ARM_CPU_PART_CORTEX_A15="0xc0f" # <asm/cputype.h>
|
||||||
|
|
||||||
|
# check cpu flags for capability
|
||||||
|
case "$(uname -m)" in
|
||||||
|
armv7l)
|
||||||
|
if egrep -m1 -w '^CPU part[[:blank:]]*:' /proc/cpuinfo | \
|
||||||
|
egrep -wq "$ARM_CPU_PART_CORTEX_A15"; then
|
||||||
|
virt="ARM"
|
||||||
|
kvm_mod="kvm"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
aarch64)
|
||||||
|
virt="ARM"
|
||||||
|
kvm_mod="kvm"
|
||||||
|
;;
|
||||||
|
ppc64le|ppc64|s390x)
|
||||||
|
# FIXME: Assume that all POWER and z/Systems are KVM capable
|
||||||
|
virt="generic"
|
||||||
|
kvm_mod="kvm"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
virt=$(egrep -m1 -w '^flags[[:blank:]]*:' /proc/cpuinfo | egrep -wo '(vmx|svm)') || true
|
||||||
|
[ "$virt" = "vmx" ] && kvm_mod="kvm_intel"
|
||||||
|
[ "$virt" = "svm" ] && kvm_mod="kvm_amd"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
if [ -z "$virt" ]; then
|
||||||
|
echo "INFO: Your CPU does not support KVM extensions"
|
||||||
|
assert_root
|
||||||
|
verdict 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Now, check that the device exists
|
||||||
|
if [ -e /dev/kvm ]; then
|
||||||
|
echo "INFO: /dev/kvm exists"
|
||||||
|
verdict 0
|
||||||
|
else
|
||||||
|
echo "INFO: /dev/kvm does not exist"
|
||||||
|
echo "HINT: sudo modprobe $kvm_mod"
|
||||||
|
fi
|
||||||
|
|
||||||
|
assert_root
|
||||||
|
|
||||||
|
# Prepare MSR access
|
||||||
|
msr="/dev/cpu/0/msr"
|
||||||
|
if [ ! -r "$msr" ]; then
|
||||||
|
modprobe msr
|
||||||
|
fi
|
||||||
|
if [ -e "$msr" -a ! -r "$msr" ]; then
|
||||||
|
echo "You must be root to run this check." >&2
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "INFO: Your CPU supports KVM extensions"
|
||||||
|
|
||||||
|
disabled=0
|
||||||
|
# check brand-specific registers
|
||||||
|
if [ "$virt" = "vmx" ]; then
|
||||||
|
BIT=$(rdmsr --bitfield 0:0 0x3a 2>/dev/null || true)
|
||||||
|
if [ "$BIT" = "1" ]; then
|
||||||
|
# and FEATURE_CONTROL_VMXON_ENABLED_OUTSIDE_SMX clear (no tboot)
|
||||||
|
BIT=$(rdmsr --bitfield 2:2 0x3a 2>/dev/null || true)
|
||||||
|
if [ "$BIT" = "0" ]; then
|
||||||
|
disabled=1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
elif [ "$virt" = "svm" ]; then
|
||||||
|
BIT=$(rdmsr --bitfield 4:4 0xc0010114 2>/dev/null || true)
|
||||||
|
if [ "$BIT" = "1" ]; then
|
||||||
|
disabled=1
|
||||||
|
fi
|
||||||
|
elif [ "$virt" = "ARM" ]; then
|
||||||
|
# Should also test that we booted in HYP mode, if detectable
|
||||||
|
:
|
||||||
|
elif [ "$virt" = "generic" ]; then
|
||||||
|
:
|
||||||
|
else
|
||||||
|
echo "FAIL: Unknown virtualization extension: $virt"
|
||||||
|
verdict 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$disabled" -eq 1 ]; then
|
||||||
|
echo "INFO: KVM ($virt) is disabled by your BIOS"
|
||||||
|
echo "HINT: Enter your BIOS setup and enable Virtualization Technology (VT),"
|
||||||
|
echo " and then hard poweroff/poweron your system"
|
||||||
|
verdict 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
verdict 0
|
||||||
Reference in New Issue
Block a user