If you wanna backup across the net using SSH (course assuming /etc as the source to backup and bkuphost is destination hostname or IP):
tar zvcf - /etc | ssh bkuphost "cat > destfile.tgz"
Another thing you could do is replace the destfile.tgz with /dev/tape to backup to tape.




Reply With Quote