环境:
Host OS:Windows 8
Guest OS:Fedora Server 23
步骤:
1.打开虚拟机的Fedora系统,选择菜单项设备---安装增强功能。会提示:
2.进入Fedora系统,将包含VBoxGuestAdditions.iso的磁盘挂载。
在/mnt下建立挂载点cdrom:mkdir cdrom。
执行挂载命令:mount /dev/cdrom(取决于iso的位置,我的第一次是cdrom,第二次是sr1)。
3.安装前的准备工作:依次安装dkms,gcc,gcc make,kernel,kernel-headers和kernel-devel。注意版本。
可以这样:dnf install kernel-devel-$(uname -r).
如果准备工作有问题,可能出现的错误包括:
The headers for the current running kernel were not found. If the following module compilation fails then this could be the reason. The missing package can be probably installed with:
yum install kernel-devel-4.2.3-300.fc23.i686. (当然,现在的Fedora用dnf安装packages)
4.安装。在刚才挂载的/mnt/cdrom下执行 ./ VBoxLinuxAdditions.run。如果准备工作没问题,安装成功。如果失败可以查看/var/log/vboxaddition-install.log查看原因。
5.在VirtualBox中设置共享文件夹,例如名字为books。
6.在Fedora系统的/mnt下家里挂载点books,然后执行命令:
mount -t vboxsf books /mnt/books。
Virtualbox中Ubuntu设置共享文件夹:http://www.linuxdiyf.com/linux/13849.html
Ubuntu Linux通过NFS设置共享文件夹简单设置:http://www.linuxdiyf.com/linux/10826.html
如何在Fedora或CentOS上使用Samba共享文件夹:http://www.linuxdiyf.com/linux/12396.html
CentOS6.5挂载windows共享文件夹:http://www.linuxdiyf.com/linux/13764.html
VirtualBox下Fedora访问Windows下的共享文件夹方法:http://www.linuxdiyf.com/linux/3568.html