- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: backup across network using file systems
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 10:45 AM
09-05-2001 10:45 AM
Thanks, Jim
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 10:57 AM
09-05-2001 10:57 AM
SolutionActually you can output to stdout with fbackup. Just specify -f -.
I would do something like like:
fbackup -f - -g graph | compress > myfile
then rcp or ftp myfile to the remote site
and
cat myfile | uncompress | frecover -f -
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 11:04 AM
09-05-2001 11:04 AM
Re: backup across network using file systems
If you want one filesystem copy to another system rdist is faster way to do it.
system to system remte copy.
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 11:15 AM
09-05-2001 11:15 AM
Re: backup across network using file systems
Another option is to NFS export ther file system to backup (as read only), then NFS mount it on the remote system.
On the remote - cd into the mount dir :-
find . |cpio -pudvm /
Just another option.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 11:37 AM
09-05-2001 11:37 AM
Re: backup across network using file systems
Try this from the host you want to back up:
mknod /tmp/backup_pipe p
chmod a+rw /tmp/backup_pipe
tar -cvf /tmp/backup_pipe .
From the host with the tape drive (or remote host) try this:
remsh host2backup dd if=/tmp/backup_pipe |dd of=/dev/rmt/tapedrivename
works like a champ, and the server backing up the remote server doesn't really need root access, but it does need access to the /tmp/backup_pipe file. Also, you can play with the block size on "dd" to make it more efficient.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 11:45 AM
09-05-2001 11:45 AM
Re: backup across network using file systems
Whatever method you use make sure that you pipe through sort sort of compression to lessen the network component - that is your killer piece of the puzzle.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 12:53 PM
09-05-2001 12:53 PM
Re: backup across network using file systems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 02:18 PM
09-05-2001 02:18 PM
Re: backup across network using file systems
You would be happy if you can buy "HP OpenView OmniBack II".
from a single ( or multiple ) site(s), you can schedule and monitor backups an really flexible manner. You can backup data locally or even remote to multiple tapes on different nodes ( media pool ).
If needed more info, just post your request !
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 02:49 PM
09-05-2001 02:49 PM
Re: backup across network using file systems
Okay this should be close:
fbackup -f -g graphfile -c configfile - | compress -c - | remsh remotehost uncompress -c - | frecover -c configfile
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2001 03:28 PM
09-05-2001 03:28 PM
Re: backup across network using file systems
You can try this
remsh
An equivalent cpio command may also work.
Thanks