- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- remsh and tape drives
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
10-12-2006 06:54 AM
10-12-2006 06:54 AM
i have 2 hp-ux systems and they are both clustered with ServiceGuard. The tape drive is phisicaly connected to system1 and i want to be able to make ignite tapes, tar backups from system2...
i tried :
tar -cvf test-10-12-06.tar home/ root/ | remsh system1 "dd of=/dev/rmt/0mn"
But the tar was created on /
Is that command the proper way of doing so...?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2006 07:04 AM
10-12-2006 07:04 AM
Re: remsh and tape drives
Don't know about tar, but fbackup (utility within HP-UX) allows you to specify a remote tape drive with the -f option. It works well, but you need to use the hosts.equiv file in order to get communications between the systems
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2006 07:06 AM
10-12-2006 07:06 AM
Re: remsh and tape drives
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2006 07:13 AM
10-12-2006 07:13 AM
Solutionif you specify a file as a target, tar will write to a file. As you want to pipe the result, you need to write to stdout
tar -cvf - home/ root/ | remsh system1 "dd of=/dev/rmt/0mn"
so "-" instead of "test-10-12-06.tar"
Since tar defaults to a blocksize of 5120 bytes, there may be need to specify "obs=5120" in your "dd" to make the tape directly readable by tar.
Test carefully, otherwise you may have trouble to read your backup.
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2006 07:28 AM
10-12-2006 07:28 AM
Re: remsh and tape drives
tar -cvf user@system1:/dev/rmt/0mn home/ root/
Yang
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2006 09:48 AM
10-12-2006 09:48 AM
Re: remsh and tape drives
DCE's "-" worked... I didnt have to add the "obs=". tar recognized it with no problems...