I am trying to access Windows share in Ubuntu 16.04 using GUI.
I am able to access same share in ubuntu 14.04. In Ubuntu 16 whenever i type smb:// it will generate error saying "This file server type is not recognized" What is the issue?
I am trying to access Windows share in Ubuntu 16.04 using GUI.
I am able to access same share in ubuntu 14.04. In Ubuntu 16 whenever i type smb:// it will generate error saying "This file server type is not recognized" What is the issue?
Happened to me and found this solution here: https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/1617107
TL;DR:
you need the gvfs packages listed there.
For me, the gvfs-backends was missing so do:
sudo apt install gvfs-backends
logged out, logged in, and it works.
This is a problem with GVFS.
First,install samba: sudo apt install samba
The second,install the gvfs-backends: sudo apt install gvfs-backends
logged out and logged in.
Open nautilus,the file manager, and press ctrl+L. This will give you a text field where you can type.
smb://ip.ip.ip.ip/ShareName
you can also select "connect to server", and type smb://ip.ip.ip.ip/ShareName.
smb://ip.ip.ip.ip/ShareName– Alex Feb 15 '17 at 07:11sudo printf "\n%s\n" "client use spnego = no" >>/etc/samba/smb.conf– Alex Feb 15 '17 at 07:39