O Windows não pode acessar o servidor Samba - “não acessível”

0

Eu criei o servidor Samba seguro. Mas no Windows quando tento usá-lo, o Windows me dá um erro:

\UBUNTU\folder is not accessible. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access permission. Multiple connections to a server or shared resource by the same user, using more than one user name are not allowed. Disconnect all previous connections to the server or shared resource and try again.

    
por este 12.12.2016 / 06:50

1 resposta

0

sudo apt-get install samba
sudo nano /etc/samba/smb.conf

Coloque no final:

comment = Ubuntu File Server Share
   path = /home/ubuntu/ubuntu # The path to the folder
   browsable = yes
   guest ok = yes
   read only = no
   create mask = 7777

Em seguida, crie uma pasta:

sudo mkdir -p /home/ubuntu/ubuntu
sudo chown nobody.nogroup /home/ubuntu/ubuntu

Em seguida, experimente o endereço IP do Ubuntu no Windows

    
por con9wnuk 12.12.2016 / 13:22