if you are scared of what would happen, use this option:
Code:
rsync -avz --dry-run /mnt/nt4/ /var/archive
The --dry-run option will only do a simulation of what would happen. Then if it looks good, take out the --dry-run
yes, you will need to create a samba share in case your NT4 server crashes. Then you can map the users drive on the Mandriva system. Assuming Mandriva 2005 mini has SAMBA, all you need to do is configure /etc/samba/smb.conf (I'm assuming that's the correct path for Mandriva).
Are you using Active Directory on your NT4 box? There is a way to get SAMBA to be in your Active Directory, but I would have to consult my Samba book on how to do this. Wouldn't be a bad thing for me to finally learn how to do this. Otherwise, you would have recreate each user on the samba server which is a pain! So, in the interim of fixing your NT4 system, create a guest account or a dummy SAMBA user.
Here's an example of how I'm going to assume that the users need to access their files temporarily and you do not need security for the time being while you fix your NT4 server. The Linux box will act as a standalone samba file server
vi /etc/samba/smb.conf
Code:
# create a new entry for /etc/samba/smb.conf so Windows users can retrieve files from /var/archive
#this is the SHARE name Windows users need
[nt4]
#So Windows users know what this drive is
comment = NT4 drive
#path to where the NT4 files are on your Linux box
path = /var/archive
#means users can write to this directory. Change to read only = yes if you only want them to read and not write
read only = no
#users can see this on their network neighborhood
public = yes
#allow guests to connect. Check your [global] section for what the guest account name is. On my CentOS it is pcguest by default. Make sure this new account is in the /etc/passwd
guest ok = yes
Now you just tell your Windows users to map to the new drive by right-clicking their MY COMPUTER. I personally like to do it via the command line:
Code:
net use z: \\ipaddress\nt4 /user:pcguest
Now their Z: drive will be the /var/archive