如何在 Virtual Box 中的主机 (Mac) 和 guest 操作系统 (Ubuntu) 之间共享文件夹?
请您参考如下方法:
您需要最新版本的 VirtualBox (4.3.10) Guest Additions installed在 Ubuntu 中。
- 关闭虚拟机并在 VirtualBox 中选择虚拟机后,转到: 机器>设置...>共享文件夹
- 对于“文件夹路径”,点击图标浏览您要共享的文件夹。
- 对于“文件夹名称”,输入描述共享的名称。
- 点击“确定”并再次启动虚拟机。
- 创建一个挂载点,它基本上是一个空文件夹。
- 启动终端并输入:
sudo mount -t vboxsf 文件夹名称路径挂载点
folder_name 是您之前输入的用于描述共享的名称 - 您现在应该可以浏览共享文件夹了。
如果安装困难,例如以下错误:
mount: wrong fs type, bad option, bad superblock on mydata,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount.<type> helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so
执行以下步骤:
sudo rm /sbin/mount.vboxsf
sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions/mount.vboxsf /sbin/mount.vboxsf