当前位置:Linux教程 - Samba - samba - 开机自动启动samba

samba - 开机自动启动samba

开机自动启动samba
2004-04-23 15:18 pm
来自:Linux文档
现载:Www.8s8s.coM
地址:无名

最标准的做法
1. 在 /etc/init.d 中作一个如下内容的脚本smbd

$smbspool=/var/spool/samba
$piddir=/var/run
$smbd=/usr/sbin/smbd
$nmbd=/usr/sbin/nmbd

if [ "x$1" = "x" -o "x$1" = "xstart" ]; then
 if [ -d $smbspool ]; then
  rm -f $smbspool/*
 fi
 $smbd -D
 $nmbd -D
elif [ "x$1" = "xstop" ]; then
 kill `cat $piddir/smbd.pid`
 kill `cat $piddir/nmbd.pid`
else
 echo "$0 start|stop"
fi

2. 然后执行
ln -s /etc/init.d/smbd /etc/rc3.d/S99smbd
ln -s /etc/init.d/smbd /etc/rc0.d/K01smbd