2

I'm running a fresh installation of xubuntu 16.10 and when clicking the "Add" button or the "Users" tab in shares-admin I get the following error:

Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
[1]    31900 segmentation fault  sudo shares-admin

I've tried launching with sudo and as a normal user and using the "Unlock" button, same issue.

Any ideas?

1 Answers1

-2

from terminal

1 sudo apt-get update
2 sudo apt-get install samba
3 sudo nano /etc/samba/smb.conf 4 add to config next lines [share] comment = Ubuntu File Server Share path = /home/ubuntu/ubuntu (place of your share) browsable = yes guest ok = yes read only = no create mask = 7777

Save changes in the file and create folder sudo mkdir -p /home/ubuntu/ubuntu sudo chown nobody.nogroup /home/ubuntu/ubuntu

init 6 (reboot system)

After all this operations you will your share from any OS

  • I can setup a samba share using config without issue, my problem is with shares-admin having a segfault. Thanks though. – Systemmanic Nov 29 '16 at 10:19