INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

HANDLE


PASSWORD
Remember Me
Forgot Password?

Come Join Us!

  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • Turn Off Ad Banners
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

E-mail*
Handle

Password
Verify P'word
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Member Feedback

"...I am very happy with the whole site and would like to extend my compliments to all of you who work to make it one of the most useful sites (If not THE Most Useful) ...and the easiest to navigate..."

Geography

Where in the world do Tek-Tips members come from?

 how to backup to second harddrive and or network

blabelle (TechnicalUser)
8 Oct 03 14:59
I have a SCO openserver 5.06 box that I need to do a backup off site to another server. I already have a second SCO openserver 5.06 box setup that I want to backup to. I want the backup to go to a specific directory on the second server also, the second server has a slave or second harddrive that I want the backup to go to also.
Is there any way to do a full backup to a second harddrive? Also is ther any way to do a full backup over the network.
Thanks for any help.
I have software that does backup to a tapedrive but no option to backup to second hard drive or over the network.
Annihilannic (MIS)
8 Oct 03 15:37
To backup:

cd /filesystem/to/backup
tar cvf - . | gzip -c | rcmd remotehost dd of=/some/dir/backup.tar.gz


To restore:

cd /filesystem/to/restore
rcmd remotehost dd if=/some/dir/backup.tar.gz | gunzip -c | tar xvf -

Annihilannic.

blabelle (TechnicalUser)
8 Oct 03 16:55
Any way to automate these commands, and I am assuming this is just for the backup to the second drive right?
Annihilannic (MIS)
9 Oct 03 3:23
No, this is for the backup to a remote host.

You will also need to set up "rsh" permissions on the remote server, which means you need the host name and IP address of the backup client in /etc/hosts and the host name and user name of the user performing the backup in the ~/.rhosts file on the backup server.

If they are set up correctly you should be able to run rcmd remoteserver uptime from the backup client to test.

So you want to back it up to the remote server AND copy it to the second hard drive on the remote server?  To do that you could run another rcmd remotehost cp /some/dir/backup.tar.gz /second/hard/drive/backup.tar.gz after the initial backup.

Annihilannic.

blabelle (TechnicalUser)
9 Oct 03 13:24
I don't want to compress and decompress, I just wan to ftp the info from the first server to the second over the network automaticly at some time during the night. And then back up what was transfered to a second hard drive.
Or if there is any easier way than ftp that will accomplish the same thing.
Annihilannic (MIS)
9 Oct 03 14:45
How about rsync?  http://rsync.samba.org

Annihilannic.

Start A New Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Promoting, selling, recruiting and student posting
are not allowed in the forums.
Posting Policies

LINK TO THIS FORUM!
(Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum)
TITLE: SCO: SCO Unix Forum at Tek-Tips
URL: http://www.tek-tips.com/threadminder.cfm?pid=58
DESCRIPTION: SCO: SCO Unix technical support forum and mutual help system for computer professionals. Selling and recruiting forbidden.

 

Back To Forum