Your samba configuration does not match my format. I am running 12.04 LTS (mythbuntu) with the following configuration (I have edited this to show you the guest user nobody)
Code:
[global]
workgroup = Your group
server string = %h server (Samba, ubuntu)
log file = /var/log/samba/log.%m
max log size = 1000
syslog = 0
panic action = /usr/share/samba/panic-action %d
dns proxy = no
security = share
[video]
comment = Videos
path = /var/lib/mythtv/vidoes
public = yes
writable = no
create mask = 0777
directory mask = 0777
force user = nobody
force group = nogroup
If I run I get my user nobody. Can you run the same command and confirm you have noboby in the user list?
The folder group you are trying to share should be 'nogroup' if matching the above configuration. Alternatively you could use the actual existing group and user account that belongs to that group.
For example the default group on my share is mythtv and the user is also mythtv so to make my folder writable I would use (and actually do)
Code:
[video]
comment = Videos
path = /var/lib/mythtv/vidoes
public = yes
writable = no
create mask = 0777
directory mask = 0777
force user = mythtv
force group = mythtv
I could just add nobody to the mythtv group - this is what I mean in the previous post
Code:
useradd -G {group-name} username
Also what version of Linux are you using e.g. xubuntu 11.10?
Bookmarks