• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

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