- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: /dev/rmt/0mn or /dev/rmt/0m????
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-29-2002 07:29 AM
05-29-2002 07:29 AM
I suppose that the problem wasn??t due to the device file use in make_recovery sentence, but I??m not sure. Do you know if is better use /dev/rmt/0mn or /dev/rmt/0m?
I know that the first rewind the tape, but I think it would be more normal use the second, and then we have a copy on each tape.
What do you think?
Thank you in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 07:33 AM
05-29-2002 07:33 AM
Re: /dev/rmt/0mn or /dev/rmt/0m????
you should use it with /dev/rmt/0m
I have doen with that and it has worked fine.
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 07:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 07:36 AM
05-29-2002 07:36 AM
Re: /dev/rmt/0mn or /dev/rmt/0m????
# man make_recovery
btw, it's time to update it with new make_tape_recovery
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 07:38 AM
05-29-2002 07:38 AM
Re: /dev/rmt/0mn or /dev/rmt/0m????
/0m is with rewind option this rewinds the tape to the start of media after any command is issued ,
/0mn is no rewind option this will leave the tape at the same postion where the old commnad ended .
this is true for read , write commands , for this case I would always use the /0m option and not the /0mn option.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 07:41 AM
05-29-2002 07:41 AM
Re: /dev/rmt/0mn or /dev/rmt/0m????
make_recovery -Av
This picks up my tape device and creates the tape fine without specifying the -d option.
HTH,
Dave.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 08:20 AM
05-29-2002 08:20 AM
Re: /dev/rmt/0mn or /dev/rmt/0m????
Personally, I use 0m, because that was what the last sysadmin used, but I've never had to use it, so I don't know if there is a difference.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2002 09:24 AM
05-29-2002 09:24 AM
Re: /dev/rmt/0mn or /dev/rmt/0m????
Let's look at it this way - You create a make_tape_recovery tape with /dev/rmt/0m. The first thing written to the tape is the boot LIF area so you can boot from the tape. The tar/pax archive is then written to tape AFTER the boot area, BUT is the tape has been rewound and is sitting at the beginning of the tape, you just overwrote the boot area and your make_tape_recovery tape is useless.
If you use /dev/rmt/0mn then you have significantly less of a chance of overwriting the boot area because the tape was rewound after it was written.
I ALWAYS use the no-rewind device. If you look at the man page for make_recovery at the '-d' option you will notice that it says "A no-rewind device is REQUIRED".
That's good enough for me.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 01:38 PM
05-30-2002 01:38 PM
Re: /dev/rmt/0mn or /dev/rmt/0m????
e.g. mt -f /dev/rmt/0mn rew
jack...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 01:51 PM
05-30-2002 01:51 PM
Re: /dev/rmt/0mn or /dev/rmt/0m????
That being said, I have a line in the script I use for creating my make_tape_recovery tapes that does a 'mt -f /dev/rmt/?mn rew' before the make_tape_recovery starts just to be on the safe side. Then I ALWAYS use the no-rewind device in the make_tape_recovery command as well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2002 01:56 PM
05-30-2002 01:56 PM
Re: /dev/rmt/0mn or /dev/rmt/0m????
Thanks for the hints...
jack...