- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS mount /dev/rmt files?
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
05-21-2001 01:48 PM
05-21-2001 01:48 PM
I would like to use a tape device (dds 3) on one of our HP 9000 servers from a new L-2000 we are installing. Is it possible to mount the device files such as /dev/rmt/2mn? If not, is there some other way to accomplish this function?
My thoughts are to use an 'extra' dds tapedrive on an older server as an informix logging tape and then schedule the backups for the dds-3 that is installed in the L-2000.
Possible?
Regards,
Terry Kummell
CCITriad
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2001 02:08 PM
05-21-2001 02:08 PM
SolutionWhat you can do us use remsh to pipe output to a tape, and input from a tape...I.E (I'll use hp1
To put files to tape
L1> tar cvf - ./* | remsh hp1 'dd of=/dev/rmt/0m'
To get files from tape
L1> remsh hp1 'dd if=/dev/rmt0m' | tar xvf -
If you use fbackup, it supports remote devices on other HP systems, as well as local. Most backup utilities also support remote devices such as Omniback, Legatto, and Tivoli.
Hope it helps
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2001 02:13 PM
05-21-2001 02:13 PM
Re: NFS mount /dev/rmt files?
Shannon has given you the workaround. This is one of the few area's where System V's old RFS (Remote File System) beats NFS; it was possible to mount remote devices.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2001 03:46 PM
05-21-2001 03:46 PM
Re: NFS mount /dev/rmt files?
I'm not at my unix machine so I can't tell you the fbackup syntax exactly, but when you specify the tape drive in the fbackup command line you use a device file like 'system:/dev/rmt/?mn'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2001 05:47 AM
05-22-2001 05:47 AM
Re: NFS mount /dev/rmt files?
I have a new L class server (an L-2000). It only has one DDS-3 tape drive. We run informix here and need a dedicated tape drive to cut database log records on through out the day (24 hour operation). I had hoped that there might be some way to use a 'spare' DDS-3 drive on one of the older servers (a T600) to do this logging task. This would free up the 'local' DDS-3 tape drive to do backups.
From the responses I got, it looks like I could do backups on the 'remote' tape drive. Anyone have any experience with backups over a 10MBit network?
Thank you all for your help on this. I think I'll go try that backup right now. To see how long it's gonna take.....
Regard,
Terry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2001 05:51 AM
05-22-2001 05:51 AM
Re: NFS mount /dev/rmt files?
Device files cannot be used remotely to access remote devices. When you reference a device file it makes the kernel use a local device since a device file is a file with no data just a driver and parameters (address).
fbackup on hpux using remsh writes to remote devices but that uses remsh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2001 03:00 AM
05-23-2001 03:00 AM
Re: NFS mount /dev/rmt files?
then i used fbackup with -f machine:device switch.
I have taken backup and restored the same. The things are still working fine.
but regarding informix i dont have idea whether
it uses fbackup or not.