Hi,
I've got a backup script on Solaris 9 that looks like so:
... this seems to work ok, but I now have a new server that I want to back up on the same tape (LTO).
Whats the best way to do this ? I thought about NFS, but not sure that would work.
Both systems are running Solaris, though the remote machine is Solaris 10, and the one with the tape drive is Solaris 9.
I've got a backup script on Solaris 9 that looks like so:
Code:
for fsystem in $FSYSTEMS
do
echo "\nBacking up $fsystem to $TD - `date`...\n"
ufsdump 0uf $TD $fsystem
echo "\n$fsystem backed up to $TD - `date`."
done
Whats the best way to do this ? I thought about NFS, but not sure that would work.
Both systems are running Solaris, though the remote machine is Solaris 10, and the one with the tape drive is Solaris 9.