VirtualBox 4.0.2 Mapa do XP Host C: \ com o Ubuntu 10.10 convidado

0

Estou usando o VirtualBox 4.0.2 com o Ubuntu 10.10 como convidado. Estou tentando mapear minha unidade C:\ do Windows XP sob o convidado para compartilhar documentos. Eu posso mapear um servidor, indo para lugares - > Conecte-se ao servidor ... e seguindo o prompt do Windows Share. Eu esperava que houvesse uma maneira fácil de mapear meu Host C: \ da mesma maneira ... ou seja:

Lugares - > Conecte-se ao servidor

Tipo de serviço: compartilhamento do Windows

Servidor: [computer name]

Compartilhe: C$

Nome de usuário: [username]

Nome do domínio: [domain]

Em seguida, conecte-se

Mas isso não funciona ...

    
por user32424 15.02.2011 / 16:53

1 resposta

2

Você configurou pastas compartilhadas e instalou as ferramentas do vbox no convidado? Parece que você está tentando acessar a unidade C: por meio do compartilhamento de rede CIFS "normal". É muito mais rápido e mais difícil de quebrar, se você usar pastas compartilhadas:

link

Boot the Guest and open a terminal. Create a folder where you will mount it on. E.g. in your home folder. I will use ~/host for the mount point. Now mount it with the following command:

sudo mount -t vboxsf share ~/host

Note that with this, the default mount options are used and all files are owned by root.

This can be changed by adding some mount options. Options are passed on with the -o parameter. You can use multiple options with one parameter, seperate the values with a comma. See the man page of mount for more info on which options you can use. The User Manual also notes the options compatible with the Shared Folders. To mount the SF so that you are the owner of the files, use this command:

sudo mount -t vboxsf -o uid=1000,gid=1000 share ~/host
    
por 15.02.2011 / 17:29