ArchLinux中安装Virtualbox Guest Additions增强功能

最近一直在Virtualbox里面倒腾Archlinux,至少纯手工命令行安装系统已经不用再看之前写的日志攻略了,但是Virtualbox的增强功能(Guest Additions)一直安装不顺利,再记录一下完整的安装流程,其实直接用官方的库安装就行了,主要是openbox桌面环境下面需要手工设置一下开机自动启动服务

1.安装必备的相关包

# pacman -S virtualbox-guest-utils

ArchLinux中安装Virtualbox Guest Additions增强功能_第1张图片

2.启动增强服务

# VBoxClient-all    //手工启动增强服务
# modprobe -a vboxguest vboxsf vboxvideo    //手工在Linux Kernel中开启相应的功能模块,这一步非必须
# systemctl enable vboxservice    //开机自动启动这个服务后可以实现虚机与Host之间的时间自动同步
# vim /etc/xdg/openbox/autostart    //编辑增加一行VBoxClient-all实现开机自动启动增强服务

参考官方wiki的说明,其实在安装virtualbox-guest-utils的时候自动加入了开机自启动的脚本来着,但是貌似在openbox桌面环境下没有生效,所以才得手工在/etc/xdg/openbox/autostart文件里面加上VBoxClient-all那一行实现开机自动启动,官方原文:

virtualbox-guest-utils installs /etc/xdg/autostart/vboxclient.desktop that launches VBoxClient-all on logon. If your desktop environment or window manager does not support XDG Autostart, you will need to set up autostarting yourself, see Autostarting#On desktop environment startup and Autostarting#On window manager startup for more details.

VirtualBox can also synchronize the time between the host and the guest, to do this, start/enable the vboxservice.service.



你可能感兴趣的:(Linux)