将文件夹从主机Mac OS共享到VirtualBox中的来宾Linux系统

时间:2014-05-07 09:44:10

标签: macos ubuntu-12.04 virtualbox host

如何在Virtual Box中的主机(Mac)和来宾操作系统(Ubuntu)之间共享文件夹?

1 个答案:

答案 0 :(得分:74)

你需要在Ubuntu中使用最新版本的VirtualBox(4.3.10)和Guest Additions installed

  • 关闭虚拟机并在VirtualBox中选择,请转到: 机器>设置...>共享文件夹
  • 对于“文件夹路径”,单击图标以浏览要共享的文件夹。
  • 对于“文件夹名称”,输入描述共享的名称。
  • 单击“确定”并再次启动虚拟机。
  • 创建一个基本上是空文件夹的挂载点。
  • 启动终端并键入: sudo mount -t vboxsf folder_name path_to_mount_point 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