- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: 1 more question today I promise.
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
01-15-2002 11:33 AM
01-15-2002 11:33 AM
Thanks,
Bob
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 11:39 AM
01-15-2002 11:39 AM
Re: 1 more question today I promise.
On K-servers, if you have a hung internal modem, you generally end up rebooting to clear it. Sorry.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 11:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 11:45 AM
01-15-2002 11:45 AM
Re: 1 more question today I promise.
Use this method
1. Vi /etc/inittab and turn the getty from respawn to off for the device you are looking for example if the device is ttyd0p7 then
a0:3:respawn:/usr/lbin/uucp/uugetty -r -t 60 -h ttyd0p7 19200
to:
a0:3:off:/usr/lbin/uucp/uugetty -r -t 60 -h ttyd0p7 19200
2. ps -ef|grep ttyd0p7
root 632 1 0 Nov 9 ? 0:00 /usr/lbin/uucp/uugetty
-r -t 60 -h ttyd0p7 19200
3. kill -9 pid # kill the pid of the uugetty
Or If you can use Kermit then
Run kermit; then execute the following:
a. [/dev] C-Kermit>set line /dev/tty0p7
b. [/dev] C-Kermit>set speed 19200
/dev/tty0p7, 19200 bps
c. [/dev] C-Kermit>connect
Connecting to /dev/tty0p7, speed 19200.
7. This is where you can break into a busy line:
a. +++ATZ
Enters an escape on a busy line by using the three
pluses; the ATZ resets the modem.
b. AT&D3
Resets the modem to default values.
c. Quit kermit:
[/dev] C-Kermit>quit
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 11:56 AM
01-15-2002 11:56 AM
Re: 1 more question today I promise.
You may get lucky with some of the methods suggested but with the internal modem on a K, if it is hung you will have to power off the K to reset the modem (been there, down that).
My K had an internal modem. Since powering off the K was not a good option, I had HP replace it with an external modem. You should pressure HP to do the same.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 12:10 PM
01-15-2002 12:10 PM
Re: 1 more question today I promise.
Here's the thread from my experience with a hung internal modem on a K:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x165e87dc4d7dd5118ff00090279cd0f9,00.html
Internal modem on a server is not a good design. Insist on an external to replace it.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2002 12:39 PM
01-15-2002 12:39 PM
Re: 1 more question today I promise.
c.k.chan's resolution worked fine. Thanks to everyone.