- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Making local tape available on remote 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
12-26-2001 06:15 AM
12-26-2001 06:15 AM
Making local tape available on remote system
I have tried using the following line on the K-Class:
roushprod:/dev/rmt/3m
This does not work for what I need to do. If I try to do an OS backup to this device it works fine. I am trying to do an Informix archive to the remote tape but the Informix software cannot use a remote tape device as specified above. Hence the need to make the K-Class see the remote drive as a local drive.
Thanks,
Craig
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2001 06:56 AM
12-26-2001 06:56 AM
Re: Making local tape available on remote system
You can use fbackup to use the remote tape drive .
or
from the remote system do:
remsh $sourcesystem "find $DIR | cpio -ocvx" | compress | dd of=/dev/rmt/0mn
You would need to have .rhosts entry set in the source system.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2001 07:07 AM
12-26-2001 07:07 AM
Re: Making local tape available on remote system
Create a pipe on your system and read it through remsh on the other system dumping on the tape drive.
Backup your data to this file
#mknod /tmp/testpipe p
Now use your tools to dump the backup onto the test pipe.
Read the pipe from the roushprod system
remsh k-server dd if=/tmp/testpipe |dd of=/dev/rmt/0m
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2001 07:23 AM
12-26-2001 07:23 AM
Re: Making local tape available on remote system
You cannot export a local tape drive to another system. you have to use remsh to use cpio/tar/fbackup. Try this link below for more info,
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=09449ab4123592568d/screen=ckiDisplayDocument?docId=200000007948711
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2001 07:27 AM
12-26-2001 07:27 AM
Re: Making local tape available on remote system
I am not able to do the idea with cpio and the remote as this is an Informix database on a raw partition.
The idea of using a pipe looks interesting. I may have to give that a try. Can the pipe be a mounted filesystem on another box? I am unfamiliar with the pipe function.
How to I remove the pipe when I am done with the backup?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2001 08:05 AM
12-26-2001 08:05 AM
Re: Making local tape available on remote system
You cannot it use through mounted file system as the pipe is not an ordinary file and the in/out stream should be on the same system. You need to accomplish it through remsh and a dd.
You can simply use rm to remove this file.
-Sri