VirtualBox 是 x86 硬件虚拟化产品,功能上与 VMware Server、KVM、及 Xen 类似,但是 VirtualBox 不修改 Linux 内核,开源免费,容易安装及使用。
1. 安装
安装 EPEL
参考 这里。
CentOS 用户可以直接通过 yum install epel-release
安装并启用 EPEL 源。
创建内核模块
假如 DKMS(Dynamic Kernel Module Support)已被安装,它会被应用,并会简化内核升级。安装 VirtualBox 前,首先需要从 EPEL 软件库安装 DKMS。切勿忘记设置 yum-priorities 插件。安装 DKMS 将会自动带进所需的开发用依赖组件:
yum --enablerepo=epel install dkms
安装 RPM:
选择指定版本安装,可用版本可以参考这里:
yum install VirtualBox-5.1
安装程序将会创建 vboxusers 这个群组及它所需的内核模块。为每一个会执行 VirtualBox 的用户执行:
usermod -a -G vboxusers 用户名称
2. 运行 VirtualBox
如果使用命令行,输入 “VirtualBox &”后台启动 VirtualBox。
如果使用图形界面,在 GNOME 或 KDE 里执行「应用程序/系统工具/Oracle VM VirtualBox」启动 VirtualBox。
3. 在 VirtualBox 内运用 USB
VirtualBox 访问 USB 时要求用户对 usbfs 设备有写入权限。以 root 的身份执行以下指令:
mkdir /vbusbfs
echo "none /vbusbfs usbfs rw,devgid=$(awk -F : '/vboxusers/ {print $3}' /etc/group),devmode=664 0 0" >> /etc/fstab
mount -a