First Join the domain
modify your smb.conf
password = domain
password server = domain_controller_IP
Then add the linux workstation as domain member from the NT PDC
On linux now join the domain
smbpasswd -j domain_name -r domain_controller_name
If succesful now set up shares
If you have your email over the NT network then Linux has many email client available. Just pick one and configure it as you would do with windoz
For file sharing you have to permanently mount smb shares onto your /etc/fstab file
first create the /mnt/samba directory
mkdir /mnt/samba
now create a smb filesystem entry in /etc/fstab
a smb share entry would look like this
//windozPC/share_name /mnt/samba ip=windoz_ip,username=user,password=pass 0 0
Alternatively
mount the share in your user .bashrc file
Example
For root to mount a share called OPEN on a Windoz box called HYDRA
with address 192.168.1.1 add this line into
/root/.bashrc
mount -t smbfs -o ip=192.168.1.1,username=user,password=pass //hydra/open /mnt/samba
Each time you log on root user the share OPEN is automatically mounted.
Bye
Qatqat
The reason why my girlfriend can read my thoughts is because mine are properly written! (G.Lepore)