Op vrijdag 16 februari 2001 19:07 schreef fkooman het volgende:
[..]
SAM is de NT password database geloof ik...dan denk je al snel aan een password database editor?

Precies in 1 keer goed gegokt.
Met samedit kan je dus accounts (zowel gebruikers- als computer-accounts) aanmaken voor Samba-tng. Verder kan je hier de bijbehorende instellingen per account veranderen.
Smbusser en passwd bestaan dus niet meer
Aan
Gila:
Het is inderdaad de bedoeling dat je die processen zelf start (ze zijn niet perse allemaal nodig (afhankelijk van wat je wil doen met je Samba-bak). I.p.v. ze elke keer zelf handmatig te starten zet je ze gewoon in een scriptje dat je in je Init-directory zet.
Dit is bijvoorbeeld het standaard-script dat ik ervoor gebruik:
#! /bin/sh
#
# Start/stop script for Samba TNG
#
# This is from a Solaris box. Proper links need to be made to it from the
# rcX.d directories. For Linux, it goes into /etc/rc.d/init.d
#
# Lonnie
#
# Heavily modified and integrated with autoconf by Elrond
prefix=/usr/local/samba
exec_prefix=/usr/local/samba
bindir=/usr/local/samba/bin
sbindir=/usr/local/samba/sbin
VARDIR=/usr/local/samba/var
lockdir=/usr/local/samba/var/locks
daemons="smbd nmbd netlogond samrd browserd lsarpcd srvsvcd winregd wkssvcd"
daemons="$daemons spoolssd svcctld"
cd /
unset TMPDIR
case "$1" in
'start')
echo -n "Starting SMB services:"
PATH="${sbindir}:${bindir}:${PATH}"
export PATH
for i in $daemons
do
echo -n " $i"
$i -D
done
echo "."
;;
'restart')
$0 stop
$0 start
;;
'stop')
echo -n "Stopping SMB services:"
for file in ${lockdir}/*.pid
do
if [ -r $file ]
then
d=`echo $file | sed -e 's,^.*/\(.*\)\.pid$,\1,'`
echo -n " $d"
kill `cat $file`
rm $file
fi
done
echo "."
;;
*)
echo "Usage: $0 { start | stop | restart }"
;;
esac
exit 0
Overigens is dit evenals docummentatie gewoon te vinden op bovenstaand adres. Toegegeven dat de documentatie nou niet echt is om over naar huis te schrijven, worden toch wel al je bovenstaande vragen erin beantwoord