1

I read and followed easy install instructions for sharing files with Ubuntu.

I have three computers, Windows 7 64-bit home premium, Windows Vista and Ubuntu 14.04 LTS.

My problem is that I cant access Ubuntu. When I open Explorer, go to Network, I can see all three computers but as soon as I click on Ubuntu box appears. It says :

Windows cannot access \ ( my computer name here ) ...

What should I do ?

1 Answers1

1

probably you don't have any user configured in smb.conf and/or your workgroup is not defined correctly.

  1. Edit smb.conf with gedit or nano

    sudo nano /etc/samba/smb.conf

  2. Edit or Add workgroup, in Windows as default is: WORKGROUP

    workgroup = WORKGROUP

  3. Check if are directories to share declared in smb.conf

find a structure like this:

[folder_name_in_windows]
 comment = comment
 path = /home/public
 public = yes
 writable = no
  1. Add user to SMB via shell after create an Ubuntu user without privileges and with your_user name.

    sudo smbpasswd -a your_user

Then, enter password or hit Enter to create the user without password.

Hope this can help you.