如何在主机Ubuntu上安装guest虚拟机Windows共享?


2

在Ubuntu 12.04中,我有一个运行Windows Server 2008的VirtualBox虚拟机。

我有一个目录设置为mount /media/windows,是的 chmod 777

当我从Ubuntu下的Windows服务器挂载共享时,配置文件 /media/windows 更改,我不再拥有写权限。

这是我的mount命令

sudo mount -t cifs -o username=Administrator,password='password',rw //WIN/SHARE /media/windows

它看起来像是一个缺少的逗号 passwordrw 选项。
Ben Voigt

Answers:


2

我找到了解决方案。 我将我的Linux用户ID添加到mount语句中,并将挂载目录的所有权交给我...

sudo mount -t cifs -o username=Administrator,password='password',uid=1,rw //WIN/SHARE /media/windows

您应该将答案标记为“正确”,即使它是您自己的:)
Mathias Conradt
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.