- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- make defalt for tape drive /dev/rmt/3mn
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
02-08-2004 09:41 AM
02-08-2004 09:41 AM
Since I only have one tape drive that will not change, what file do I need to modify that will make any tape access always point to /dev/rmt/3mn
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 10:13 AM
02-08-2004 10:13 AM
Solution/var/opt/ignite/recovery/defaults
It would need the following entry:
RECOVERY_LOCATION=hostname:/dev/rmt/3mn
I have never tried this so I can't vouch for it but it is mentioned in the documentation.
If you are running the make_tape_recovery from a command line or script you could simply alter it to include the drive:
make_tape_recovery -a /dev/rmt/3mn
Lastly, if you wanted to change your device from 3mn to 0mn you could follow Pete's advice in this reply:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=406386
Hope this helps....
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 10:14 AM
02-08-2004 10:14 AM
Re: make defalt for tape drive /dev/rmt/3mn
Just use the switch
-a /dev/rmt/3mn
In your make_tape_recovery command
man make_tape_recovery
for more info
HTH
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 11:44 AM
02-08-2004 11:44 AM
Re: make defalt for tape drive /dev/rmt/3mn
By far the best advice above is to fix the issue and make the tape drive into /dev/rmt/0m .Its not the easy answer, its the right answer.
I've had the same issue and found life was much easier fixing things now. A subsequent Veritas Netbackup installation/upgrade proved the wisdom of Jim's advice to me.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2004 01:18 PM
02-08-2004 01:18 PM
Re: make defalt for tape drive /dev/rmt/3mn
Now recreate the device files with:
insf -e
and you should have your tape drive at 0m. Note that assuming defaults for device files is not the best practice for sysadmins. For a backup process, it is never wise to type the command. Instead, you write a script, add tests in the script to see if the tape drive is ready not not write-protected and then add all the options. make_tape_recovery without any options will *NOT* backup your system!! According to the man pages, it will save a set of 'essential' files, predefined by make_tape_recovery. To make a recovery tape with everything in vg00 (the boot disk volume), you must use options. Recommended options are:
-v
-I
-a /dev/rmt/whatever
-x inc_entire=vg00
-v shows the progress of the backup
-I goes direct to interactive restore when the tape boots
-a (always use even if it is the default tape)
-x inc_entire=vg00 to save all of VG00
Bill Hassell, sysadmin