HP-UX -> Linux incremental remote backup

Posted by stack_zen on Server Fault See other posts from Server Fault or by stack_zen
Published on 2011-03-04T15:17:41Z Indexed on 2011/03/04 15:26 UTC
Read the original article Hit count: 302

Filed under:
|
|
|

Hi.

I've the need to setup a differential backup process from a range of remote HP-UXes to a central RHEL5 server.
I'd happily go with rsync, problem is,
stock HP-UX 11.11 has no built-in rsync and I don't have permissions to install any software on the remote stock HP-UXes.
How should I approach this?

HP-UX provides:
fbackup (HP-UX exclusive)
cpio (available in RHEL5, allows backing up only the files which changed, but always grabs the totality of the file)

ssh remote_user@remote_host 'find /u01/engine/logs/ -type f -name "*.log" | cpio -o | gzip -' | cpio gunzip - | -idmv

Those solutions don't really answer my incremental (bandwidth efficiency) problem do they?

© Server Fault or respective owner

Related posts about unix

Related posts about hp-ux