Samba

•Install samba
pkgadd -d samba*local

•Install popt

•Install readline

•Install ncurses

•Install libgcc-3.2.2

•Create lock dir (check existence)
mkdir /usr/local/samba/var/locks


-touch /usr/local/samba/private/smbpasswh
-touch /usr/local/samba/private/secrets.tdb
-chmod 0770 /usr/local/samba/private

•Create basic smb.conf in /usr/local/samba/lib

[global]
workgroup = mycom_reston
log file = /usr/local/samba/smb.log
log level = 3
security = share
encrypt passwords = yes
interfaces = 168.125.54.134
hosts allow = localhost, cbmsdev1, 168.125.
hosts deny = all
browseable = yes
[wlserver]
path = /opt/weblogic
comment = WebLogic Servers
writeable = yes
[jli]
path = %H
comment = %U Home Dir
writeable = yes
[weblogic]
path = %H
comment = %U Home Dir
writeable = yes

•Check config file
/usr/local/samba/bin/testparm

•Modify inetd
-modify /etc/services:
Insert after sunrpc 111/tcp rpcbind
netbios-ns 137/udp #Samba nmbd
netbios-ssn 139/tcp #Samba smbd

Insert after ldaps 636/udp
swat 901/tcp #Samba swat

-modify /etc/inetd.conf
Add at end of file
netbios-ssn stream tcp nowait root /usr/local/samba/bin/smbd smbd
netbios-ns dgram udp wait root /usr/local/samba/bin/nmbd nmbd
swat stream tcp nowait.400 root /usr/local/samba/bin/swat swat

•Tell inetd to re-read its conf file
pkill -HUP inetd

•Add samba user
smbpasswd -a jli

•Start daemon
smbd -D -d 5
nmbd -D -d 5

•Autostart samba
-create /etc/init.d/initsmb
-ln -s /etc/init.d/initsmb /etc/rc0.d/K10initsmb
-ln -s /etc/init.d/initsmb /etc/rc2.d/S99initsmb

This entry was posted in unix. Bookmark the permalink.