Tag Archives: linux redhat samba
SAMBA PDC Configuration in Linux
Samba PDC, PDC stands for Primary Domain Controller. We all know that samba is to share the linux files with windows clients. With samba PDC, a linux user can login into windows machine in a network by domain name.
#yum install samba*
#vim /etc/samba/smb.conf
#In Global settings:
Workgroup =abc.com
server string = samba # hostname to identify
netbios name = samba
#Domain controller option:
security = user
passdb backend =tdbsam
domain master = yes
domain logons = yes
logon path = \\%L\profile\%U
#Browser Control optio





