- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- make_tape_recovery
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
06-06-2002 11:59 AM
06-06-2002 11:59 AM
make_tape_recovery
"make_tape_covery -i" on one it pops into the
character based utility, on the other I get:
*****************************************
Do you want to proceed in setting your TERM value and running
mnr_ui? (yes or no) [yes]
Input the correct value for your terminal or press "return" to set
the default TERM value = hp. TERM = (hp)
******************************************'
I am using EXCEED from a PC and the TERM type
is "dtterm", it works on the other one, here
no matter what I try (hpterm, vt100, dtterm)
it all fails and I had to just bomb out. Any
ideas?.
Thanks,
Randy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 12:04 PM
06-06-2002 12:04 PM
Re: make_tape_recovery
Before running the make_tape_recovery, export your TERM value and try,
export TERM=dtterm
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 12:16 PM
06-06-2002 12:16 PM
Re: make_tape_recovery
You can try setting TERM before using ignite:
TERM=dtterm; export TERM
Also check that the same shell is being used on both systems:
grep username /etc/passwd
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 12:24 PM
06-06-2002 12:24 PM
Re: make_tape_recovery
The other system is using the same shell
(ksh as the root user on both). The TERM
value is "dtterm" on both? The program
error:
mnr_ui does not support this type of terminal. You must set TERM
to a value that is supported by mnr_ui and compatible with your
terminal.
"mnr_ui" says it doesn't support hp, hpterm,
dtterm, vt100. As I've tried them all and it
barks right back at me. Even though my TERM
already = dtterm, I re-exported it and it failed again?.
Thanks,
Randy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 12:43 PM
06-06-2002 12:43 PM
Re: make_tape_recovery
If you are not at the latest version (it sounds like you are not), you may want to upgrade?
Marty
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 12:50 PM
06-06-2002 12:50 PM
Re: make_tape_recovery
just a thought ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 02:14 PM
06-06-2002 02:14 PM
Re: make_tape_recovery
The version of Ignite was the same as the neighboring system. I removed and re-installed
the Ignite s/w and that resolved the problem.
I just want to say thanks to everyone for
your time and help!
Have a great day and keep up the good work!
Randy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:18 PM
06-06-2002 05:18 PM
Re: make_tape_recovery
"The other system is using the same shell
(ksh as the root user on both)."
BIG PROBLEMS AHEAD. The root shell on HP-UX must be /sbin/sh and never changed. /sbin/sh is the POSIX shell (NOT Bourne shell) and is actually a superset of ksh (which is also a POSIX shell). /sbin contains archived library executables, a fancy name for self-contained executables. On the other hand, /usr/bin executables require shared libraries (found in /usr/lib) but will not be available when running in single user mode.
This the 2 systems you mentioned will not run in single user mode as /usr/bin/ksh cannot find it's libraries.
Most sysadmins change HP-UX root shell to ksh (or bash) because they are familiar with other vendors who supply the Bourne shell as sh. The HP POSIX shell has all the features of ksh and more (try ulimit -a in ksh and then /sbin/sh).
Another reason is to switch to ksh is to get command stack recall working. It works fine but requires the env variable HISTFILE to be set at login (ksh uses it too but it is optional). Just add this to /etc/profile:
export HISTFILE=$HOME/.profile
And change root back to /sbin/sh. NOTE: you can always login as root and type: ksh
Bill Hassell, sysadmin