Hi All,
As every newbie, I spent a LOT of Time setting-up Samba 3....& it finally works on kernel v2.6. Im using samba Now I can browse my win2k3 shares & also mount then using:
# mount -t cifs -o username=Myuser,password=Mypass //win2k3_server/share //mnt/windows
my requirements are to enable automatic mounts my users' shares from Win2k3 at logon time, & umount them at logout...
I found a lot of thing things about that on the internet. however, most of the doc assume the Samba server running as a PDC, which IS NOT MY CASE. therefore, poor me have

NO CLUE

where to start.
Can anyone PLEASE provide the newbie that I am with some Howto or step-by-step to configure samba [netlogon] & scripts.
Thx a lot
below is my smb.conf file:
#================ Global Settings =====================
[global]
# workgroup = NT-Domain-Name or Workgroup-Name
workgroup = medi
netbios name = LinuxMachine
winbind separator = :
idmap uid = 10000-20000
idmap gid = 10000-20000
winbind uid = 10000-20000
winbind gid = 10000-20000
winbind enunm users = yes
winbind enunm groups = yes
template homedir = /home/%D/ %U
template shell = /bin/bash
winbind usedefault domain = yes
client use spnego = yes
unix extensions = yes
case sensitive = yes
delete readonly = yes
server string = Samba Server
security = ADS
encrypt passwords = yes
realm = medi.com
smb passwd file = /etc/samba/smbpasswd
# if you enable domain logons then you may want a per-machine or
# per user logon script
# run a specific logon batch file per workstation (machine)
; logon script = %m.bat
# run a specific logon batch file per username
; logon script = %U.bat
# Where to store roving profiles (only for Win95 and WinNT)
# %L substitutes for this servers netbios name, %U is username
# You must uncomment the [Profiles] share below
; logon path = \\%L\Profiles\%U
#================ Share Definitions =====================
[homes]
comment = Home Directories
browseable = no
writeable = yes
valid users = %S
create mode = 0664
directory mode = 0775
[netlogon]
; comment = Network Logon Service
: path = /usr/local/samba/lib/netlogon
; guest ok = yes
: writable = no
; share modes = no
;[Profiles]
; path = /usr/local/samba/profiles
; browseable = no
; guest ok = yes
[shared]
path = /home/shared
writeable = yes
guest ok = yes
[medi]
path = /home/medi
writeable = yes
Peace
