2007-10-29, 10:55 PM
Hello :)
So um, here we go. Edit /etc/samba/smb.conf
Code:
[home]
comment = My Home Space
path = /home/myuser/
valid users = myuser
public = no
writable = yes
printable = no
create mask = 0765
Thats a simple example, replace "myuser" with your correct username. Then you want to restart the samba service. I believe that under Fedora its:
Code:
service smb restart
That should be it working as a share then. Basically smbclient works like this for listing your home directory:
Code:
smbclient -U myuser //localhost/home -c "ls"
Or for doing a simple copy of a file:
Code:
smbclient -U myuser //localhost/home -c "cp file filecopy"
etc
Any good?