Thursday, October 12, 2023

samba share folder

 To share samba (windows share) with all permisson (on debian jessie) add following lines to  /etc/samba/smb.conf

...

[<name media>]
 path = <path to folder>
 public = yes
 writable = yes
 comment = smb share
 printable = no
 guest ok = yes
 read only = no
 directory mask = 0775

example:

vi /etc/samba/smb.conf

.....

[media]
 path = /media
 public = yes
 writable = yes
 comment = smb share
 printable = no
 guest ok = yes
 read only = no
 directory mask = 0775


to add password simple:

[media]
 path = /media
 public = yes
 writable = yes
 comment = smb share
 printable = no
 guest ok = no
 read only = no
 directory mask = 0775
 username = igunos

multiple user  username = igunos, jony, antony

then add password

sudo smbpasswd -a igunos

....<your passwd>

No comments:

Post a Comment