- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: OS backup across network
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-10-2002 09:19 AM
09-10-2002 09:19 AM
It is possible to do a full OS backup of a server across the network. What I'm getting at is I have a server that we don't have a tape drive for. Any help is greatly appreciated. Points will be assigned.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 09:36 AM
09-10-2002 09:36 AM
Re: OS backup across network
Sandip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 09:38 AM
09-10-2002 09:38 AM
Re: OS backup across network
You need IgniteUX, which is a great product and it is free. Here is the link for the download:
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=IGNITEUX
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 11:28 AM
09-10-2002 11:28 AM
Re: OS backup across network
If you have a mount point on your box that you want to backup, I would use fbackup or cpio and simply exclude the mount directory.
Using the automounter, I'd mount the machine for the backup as, say myBackupFS in /net then using cpio exclude /net during the backup. For example:
cd /
find . ! -name '/net/*' | cpio -oxmB > /net/myBackupFS/myArchive.cpio
This should backup your entire filesystem, including device files, without going down the backup directory tree.
I hope this helps. If you need more info, let me know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 12:30 PM
09-10-2002 12:30 PM
Re: OS backup across network
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 12:45 PM
09-10-2002 12:45 PM
SolutionIf you want to place the backup on a disk on another machine with enough space, then you can use "tar" to backup your directories.
tar -cf - /* | remsh remotesystemname (cd /backupdir; tar -xf - )
If you have any other requirement than this pls specify.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 12:53 PM
09-10-2002 12:53 PM
Re: OS backup across network
You may also backup other directories using their path name as /test /dbms etc
in place of /*
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 12:54 PM
09-10-2002 12:54 PM
Re: OS backup across network
Backing up OS files is very well handled by one of the HP's product utility "make_net_recovery" which is a part of Ignite-UX. backing up with tar/cpio will not allow you to recover the system in case you need to rebuild the system from the scratch.
Here is the link to start with :
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90749/B2355-90749_top.html&con=/hpux/onlinedocs/B2355-90749/00/00/14-con.html&toc=/hpux/onlinedocs/B2355-90749/00/00/14-toc.html&searchterms=ignite&queryid=20020910-135822
HTH
...Manjeet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 10:55 PM
09-10-2002 10:55 PM
Re: OS backup across network
You need to run rmt on the remote HP system with tape device and establish trust from the system backing up to the
one with the tape drive.
It's slower that using fbackup with a local tape drive, but it works. You can recover with frecover as well to the remote system. Good luck.