Ubuntu 22.04 配置VirtualBox安装Windows 10虚拟机
文章目录
- [Ubuntu 22.04 配置VirtualBox安装Windows 10虚拟机](#Ubuntu 22.04 配置VirtualBox安装Windows 10虚拟机)
-
- 1.安装virtualbox
- 2.下载Window.iso文件并载入
- 3.问题解决
-
- [3.1 Kernel driver not installed (rc=-1908)](#3.1 Kernel driver not installed (rc=-1908))
- [3.2 VT-x is disabled in the BIOS for all CPU modes](#3.2 VT-x is disabled in the BIOS for all CPU modes)
- 4.安装Windows
- 5.其他配置
- Reference
环境配置如下:
- ubuntu22.04
- virtualbox
- windows10
1.安装virtualbox
运行下列命令安装virtualbox
bash
sudo apt-get install virtualbox
等待安装完毕后,再菜单栏里找到virtualbox
打开并启动
然后点击New
然后取名+选择安装系统的版本
然后分配内存大小,在绿色线范围内都是可以的
然后选择创建虚拟磁盘
选择磁盘类型为VDI
选择动态分配内存
设置磁盘内存大小
然后点击Create
即可完成创建
2.下载Window.iso文件并载入
我这里使用的是Windows官网提供的iso
文件,你可以手动进去下载,这里假设你已经下载好了.iso
文件,进行配置。
选中你所下载的.iso
文件即可,然后进行启动
3.问题解决
3.1 Kernel driver not installed (rc=-1908)
问题的具体报错如下:
Kernel driver not installed (rc=-1908)
The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Please install virtualbox-dkms package and load the kernel module by executing
modprobe vboxdrv
as root. If it is available in your distribution, you should install the DKMS package first. This package keeps track of Linux kernel changes and recompiles the vboxdrv kernel module if necessary.
where: suplibOsInit what: 3 VERR_VM_DRIVER_NOT_INSTALLED (-1908) - The support driver is not installed. On linux, open returned ENOENT.
首先,尝试使用
bash
sudo modprobe vboxdrv
如果报错
bash
$ sudo modprobe vboxdrv
modprobe: ERROR: could not insert 'vboxdrv': Required key not available
则使用以下的两条命令
bash
sudo apt update
sudo apt install --reinstall linux-headers-$(uname -r) virtualbox-dkms dkms
使用完毕后,会让你输入一个MOK
的密码,请记住这个密码,这里我的密码设置为test123456
,然后rebot
重启电脑,执行perform mok management
,按照以下的步骤执行:
- 选择
enroll mok
(perform mok mangement 界面) - 选择
contninue
(enroll mok 界面) - 选择
yes
(enroll the key 界面) - 输入安装时设定的密码,我的密码是
test123456
,所以我就输出test123456
- 选择
Rebot
(perform mok management 界面)
重新启动完毕后,在终端输入
bash
sudo modprobe vboxdrv
没有报错即可。
3.2 VT-x is disabled in the BIOS for all CPU modes
报错的详细信息如下:
VT-x is disabled in the BIOS for both all CPU modes (VERR_VMX_MSR_ALL_VMX_DISABLED)
这个报错的意思是CPU
的VT-X虚拟化技术
处于关闭
状态,需要在电脑主板BIOS中开启CPU虚拟化技术,每种类型的主板操作不一样,但是大概的操作方式是:
- 重启进入
BIOS
- 找到
CPU
相关的Visualization
相关选项 - 设置为
ON
,允许虚拟化
4.安装Windows
我们成功启动进入安装界面,windows的版本选择windows10专业版
然后在安装的过程中选择自定义:仅安装Windows
,
其余步骤使用默认的选项就好。
这里安装的Windows是正版
5.其他配置
5.1配置自适应全屏
首先下载Guest Additions CD image
然后在我的桌面找到这个驱动器
然后运行这个安装程序,默认安装即可
然后重启虚拟机,在菜单选项栏中,使用view > Adjust Window Size
即可调整屏幕的大小了
5.2设置共享文件夹
在虚拟机的设置中添加如下设置,并选择你需要共享的文件夹即可
Reference
[1]ubuntu下用VirtualBox安装Windows虚拟机
[3]VT-x is disabled in the BIOS for both all CPU modes (VERR_VMX_MSR_ALL_VMX_DISABLED)
[4]How to fix errors in virtualbox - modprobe vboxdrv, Kernel driver not installed