- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: use a tape on another system
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
03-03-2004 06:50 AM
03-03-2004 06:50 AM
Can this be done? If not why?
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2004 06:56 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 01:46 AM
03-04-2004 01:46 AM
Re: use a tape on another system
fbackup -f private_lan:/dev/rmt/0m -i /tmp I get "could not open output file private_r3_prd:/dev/rmt/0mn" and I then have to answer no two times to get out of the process.
It seems so close but dies a death. I can't see a problem with the command but....
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 01:55 AM
03-04-2004 01:55 AM
Re: use a tape on another system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 01:56 AM
03-04-2004 01:56 AM
Re: use a tape on another system
tar cvf - . | remsh remote_system dd of=/dev/rmt/0m
Regards,
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 05:53 AM
03-04-2004 05:53 AM
Re: use a tape on another system
you can use SAM, but you neet to setup the remsh access.
Make sure you have ".rhosts" in the home directory of User "root" on the machine with the tape. It should contain
ip_of_host_to_backup root
And have permissions "-rw-------".
Test it as root from host_to_backup with the command
remsh ip_of_host_with_tape ls -l /tmp
Should list the content of "/tmp" of the host_with_tape.
Go into SAM -> local backup and use a remote backup device.
Hope this helps
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 06:46 AM
03-04-2004 06:46 AM
Re: use a tape on another system
like Trond suggested, you can pipe the dump of any archiving or backup tool into a remote command on another host to write the dump to any appropriate device.
However, tar (especially if you're not using GNU tar) may not be the best choice if you have to care for e.g. large files.
Therefore I would take the tool which is best suited for your filesystem.
Since most of the filesystems on HP-UX by now are Veritas I would take their vxdump
(of course HP's fbackup should also work).
There's also no need for a trusted host relationship like .rhost.
If you don't mind the cryptographic overhead you could also use SSH.
E.g. as root
# vxdump -0f - /home|ssh remote_host 'cat >/dev/rmt/0mn'
If you need fancier blocking or conversion use dd instead of cat.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2004 08:09 AM
03-04-2004 08:09 AM
Re: use a tape on another system
One.. for some unknown reason the operator had put a 90M tape into the HPsurestoredat40
drive. It will accept it but it won't write on it.
Once that was changed to a 120M tape the testing could be started all over again..
Second.. apparently because we have a san based tape attached we MUST use the 0mn device since the kernel parameter st_san_safe forces all tapes classified as "stape" to use the no rewind devices.
Patrick - the .rhosts and the /etc/hosts.equiv files were already in place.
Trond - an intereting idea that works unless you have sockets, or links, uderneath the point you are backing up. If you back up /tmp and it has a socket int it the socket doen't get backed up. You simply receive an error message about it saying "is not a file. Not dumped". There is a parameter that says for tar to "follow the symbolic link", but does that back up the link itself? Unknown.
Volker - Using your suggestion I was able to confirm that fbackup should work. When you go through sam, it collects your information and then uses fbackup to do the work.
Ralph - Some nice ideas.. had not known of xvdump before... may use it in the future.
FINAL Command was as follows using /tmp input
fbackup -f remote_host:/dev/rmt/0mn -i /tmp
Thanks to all.