Samba
From WhyNotWiki
/etc/samba/smb.conf
[uploads] comment = Uploads path = /data/uploads browseable = yes read only = no public = yes write list = uploader, tyler
http://www.ctunion.com/node/53.
mkdir /share /etc/init.d/samba restart smbuser -a jhansen smbpasswd -a jhansenif you want to add shares to your samba server add the following lines in the config file.
[newshare] path = /newshare browseable = yes comment = share writable = yes public = yes guest ok = noNow create the share and give it some permissions.
chmod 777 /share chown jhansen:jhansen /share chmod 755 /share/
