Sysback let you backup systems on the network that can be restored...Perhaps
you should look into that...it is about $400...and is sold by IBM global
services...
http://sysback.services.ibm.com/
Remember tar and cpio are not bootable, and to restore your system you will
have to jump through a few hoops to get it up and back the way it was...Tar
and cpio are fine for your data...but not system files, (my
opinion).............Sysback is the way to go if you cannot have a tape
drive...on the machine.............
or mksysb to a file and nim restore.............using that file............
You can try:
tar -bl -cf - . | rsh YOURREMOTEHOST "dd ibs=512 obs=1024
of=/dev/rmt0"
Restore from a remote, could look like this:
cd for file that begin ./home/myname
rsh remote_hostname "dd if=/dev/rmt1 bs=1024" | restore -xqvf -
Which if you break this apart has a dd executing on remote_hostname
that read a tape on rmt1 and places the data on stdout which the rsh pulls
back to the local machine, a pipe to move data between commands, then
restore executing on the local machine reads data from stdin and writes the
output.
---------------------------------------------------------------------
> Hi,
> I want to back up an AIX (4.3.3.0) box. The problem I have is that the
> tape device is attached to another AIX box and the cable for that, won't
> fit the one I want backed up.
> I'm told that in order to run mksysb though, I need to have the tape
> machine physically attached to the box, therefore I need to back it up
> over the network.
> My colleague has suggested using tar and given me the following command
> to run from the box with the tape attached (rhosts authentication is set
> up so no password required):
> rsh host_to_backup tar cf - / > host_to_backup.tar > /dev/rmt0
> Unfortunately this just creates an empty host_to_backup.tar file. I
> really don't know anything about doing backups, so if someone could put
> me back on the right track, I'd be really grateful.
> Cheers,
> JS.