629 ?? Is 0:00.06 /usr/local/sbin/smbd -D
631 ?? Ss 0:00.24 /usr/local/sbin/nmbd -D
632 ?? I 0:00.00 /usr/local/sbin/nmbd -D
633 ?? I 0:00.40 /usr/local/sbin/smbd -D
Почему столько процессов?
stat# cat /usr/local/etc/rc.d/samba.sh
#!/bin/sh
smbspool=/var/spool/samba
pidfiledir=/var/run
smbd=/usr/local/sbin/smbd
nmbd=/usr/local/sbin/nmbd
# start
if [ "x$1" = "x" -o "x$1" = "xstart" ]; then
if [ -f $smbd ]; then
if [ -d $smbspool ]; then
rm -f $smbspool/*
fi
echo -n ' Samba'
$smbd -D
$nmbd -D
fi
# stop
elif [ "x$1" = "xstop" ]; then
kill `cat $pidfiledir/smbd.pid`
kill `cat $pidfiledir/nmbd.pid`
fi
stat#