You have to setup samba shares on the linux box.
make sure that samba is installed and started,
chkconfig --level 2345 smb on
then edit the etc/samba/smb.conf file, detailed instructions are included in the file, anyway the basic steps to take are
workgroup = your workgroup
hosts allow = 192.168.1. -to allow the 192.168.1.x subnet
and create a share for example /tmp
[temp]
path = /tmp
comment = linux share
browseable = yes
writable = yes
public = yes
now restart smb daemon,
service smb restart
and open start/run
//linux_machine/temp
To do the opposite, open a windoz share from linux, create the directory /mnt/samba
now from linux
mount -t smbfs -o ip=windoz_ip_address,username,password //windoz_netbios_name/share //mnt/samba
This will mount your windoz share in the directory /mnt/samba on your linux box.
If you want the linux box, finally to join the domain,
smbpasswd -j your_windoz_domain -r your_pdc_server
DO this only after adding linux in the server list in windoz server.
There is a lot more about samba at
I hope my instructions will point you in the right direction.
Bye
Qatqat
Life is what happens when you are making other plans.