Configure linux samba server step by step
Configure Linux samba server step by step guide example and implementation Exam question There are mixed lots of System running on Linux and Windows OS. Some users are working on Windows Operating System. There is a /data directory on Linux server should make available on windows to only sadeek should have right to connect with samba server . Configure to make available. Configure samba server How to make a Samba Server on RHEL6 Install Samba packages in your machine by yum command: [root@sadeek~]$ yum install samba* -y Open Samba's configuration file: [root@sadeek ~]$ vi /etc/samba/smb.conf # at line 58 add the following unix charset = UTF-8 dos charset = CP932 # at line 75 change to the windows workgroup. workgroup = WORKGROUP # at line 81 uncomment and change the ip addresses. hosts allow = 127. 192.168. (127 is for local host and your machine virtual ip if you are using a VM). # at line 102 chang...