Samba File Sharing

shetu

Weaksauce
Joined
Jul 23, 2010
Messages
120
Hello
I want to share file between Ubuntu 14.04 and windows xp service pack 2.
I want to make share Apache virtual document folder at Ubuntu and put there Eclipse Work space. So I need full root access that folder from windows xp (xp user name Administrator).

/www
 
This is how I share mine for root access. I'm the only one on my network, so I'm not too worried about security.

[Movies]
path = /mnt/storage/movies
read only = no
guest ok = yes
 
I have same setting.

# Global parameters
[global]
server string = %h server (Samba, Ubuntu)
server role = standalone server
map to guest = Bad User
obey pam restrictions = Yes
pam password change = Yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *passw$
unix password sync = Yes
syslog = 0
log file = /var/log/samba/log.%m
max log size = 1000
dns proxy = No
usershare allow guests = Yes
panic action = /usr/share/samba/panic-action %d
idmap config * : backend = tdb

[share]
comment = Shared Data
path = /www
read only = No
guest ok = Yes
 
Back
Top