[HOWTO] SAMBA on Fedora 19
Switch up to root
su - Password: xxxxx
Installl the software, make a directory, set permissions
yum -y install samba samba-client mkdir /home/share chmod 777 /home/share
Modify samba configuration file
vi /etc/samba/smb.conf
line 66g: add
unix charset = UTF-8
dos charset = CP932
line 90g: change
workgroup = WORKGROUP
line 96g: uncomment and change, replace the subnet ‘192.168.1’ with yours if different
hosts allow = 127.0.0.0. 192.168.1.
line 98g: uncomment
max protocol = SMB2
line 125g: add
security = user
Add a sharable directory.
add to end g, save and exit :wq
[Workspace} comment = Dave's Workspace directory browseable = yes writeable = yes path = /home/dave/workspace create mode = 0755 directory mode = 0755 admin users = dave
systemctl start smb.service systemctl start nmb.service systemctl enable smb.service systemctl enable nmb.service smbpasswd -a dave
Save and quit. Esc
:wq
David Gregory Medina
Post created by: David Gregory Medina
Leave a Reply