- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Can I remotely lock the console keyboard or te...
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-15-2003 03:47 AM
05-15-2003 03:47 AM
I have a daemon process (written in C)that echos to the main console whenever a program aborts or needs valid input. The programs may have been initiated remotely or thru a scheduling package. The problem is, an operator might be typing something on the console at the time my message arrives. If they continue typeing and hit enter , everything is fine. If they backspace to delete, everything is fine. Trouble is, they just want to hit Enter in the middle.
Is there anyway to auto backspace them back,or even better... tell when the console is busy, so that I wait before sending my message.
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 03:53 AM
05-15-2003 03:53 AM
Re: Can I remotely lock the console keyboard or tell is it's busy?
if a person is typing on it, the timestamp updates....so if the timestamp is older than a minute, you know no one is typing on it at that point in time...anything more exact than that, possibly one of the experts will know :)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 04:00 AM
05-15-2003 04:00 AM
Re: Can I remotely lock the console keyboard or tell is it's busy?
Not an answer to your question but :-
The console is the last resort in controlling a server and should not be used for day to day operations.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 04:03 AM
05-15-2003 04:03 AM
Re: Can I remotely lock the console keyboard or tell is it's busy?
Get them off and onto a standard terminal/telnet session. Besides a security hazard, the system console should only be used for special messages, and even those should where possible be written to the syslog (/var/adm/syslog/syslog.log)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 04:11 AM
05-15-2003 04:11 AM
Re: Can I remotely lock the console keyboard or tell is it's busy?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 05:11 AM
05-15-2003 05:11 AM
Re: Can I remotely lock the console keyboard or tell is it's busy?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 05:45 AM
05-15-2003 05:45 AM
Re: Can I remotely lock the console keyboard or tell is it's busy?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 08:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2003 09:08 AM
05-15-2003 09:08 AM
Re: Can I remotely lock the console keyboard or tell is it's busy?
who -u is almost exactly what I need.
It saves me comparing the currect time to /dev/console.
Ken, on my system the timestamp remains constant thru inactivity.