- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX 10.20 no prompt in terminal window
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-06-2003 03:43 PM
01-06-2003 03:43 PM
I attached my .dt/startlog file.
Any ideas what to check/where to look for error messages?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 07:51 PM
01-06-2003 07:51 PM
Re: HP-UX 10.20 no prompt in terminal window
try
move your .profile to .profile.old
and then try login in
It looks to me there is some problem in your .profile with
stty setings.
-Niraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 01:56 AM
01-07-2003 01:56 AM
Re: HP-UX 10.20 no prompt in terminal window
Hi all,
I have see the problem on some workstations. I would like to know if somebody has fix it. Thanks!
Y.H.Chen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 01:58 AM
01-07-2003 01:58 AM
SolutionI have seen something similar with the HISTFILE
not working well on a NFS link.
Change .profile or /etc/profile that HISTFILE
is set to a local disc such as
HISTFILE=/tmp/.history$LOGNAME
Regards
Steve Steel
Quote of the moment
-------------------
"We are drowning in information but starved for knowledge."
-- John Naisbitt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 03:08 AM
01-07-2003 03:08 AM
Re: HP-UX 10.20 no prompt in terminal window
I'm in mind with Steve, please create a local HISTFILE.
Please also check the hostnames in /var/statmon/sm.bak and correct all old or incorrect ones.
Regards,
Armin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 03:42 AM
01-07-2003 03:42 AM
Re: HP-UX 10.20 no prompt in terminal window
I have experienced the same problem as you with a similar environment.
By implementing the solution that Steve suggests (setting up the HISTFILE variable in the /etc/profile on the NFS-client host) I got my environment to work again.
Try it yourselves !
The problem is related to NFS; my testuser with a home directory on a local FS doesn't exhibit this symptom.
Also on HP-UX 11.0 workstations I'm faced with similar symptoms; my workaround to have the prompt occur has been pressing Ctrl + C (interrupt) once or twice.
The HISTFILE solution mentioned above applies here too.
Regards,
Ejner
Thanks to Steve !! (I would give him 10 points)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 05:55 AM
01-07-2003 05:55 AM
Re: HP-UX 10.20 no prompt in terminal window
Sorry, I forgot one important thing (I unfortunately only tested telnet sessions, not the CDE environment). But ...
..to have the solution work in the CDE environment too you can do the following which take into account all users of the NFS-client host:
1. Create a file in /etc/dt/config/Xsession.d called 0100.histfile (or of your choice - the 0100 prefix determines when in the login sequence the script is sourced among others (if any) - adapt it if necessary).
2. Put the following into the file:
#!/usr/bin/ksh
export HISTFILE=/tmp/.history$LOGNAME
3. Make the file executable by all (chmod 555)
I hope this will do it ! (it did for me)
Regards,
Ejner
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 03:38 PM
01-07-2003 03:38 PM
Re: HP-UX 10.20 no prompt in terminal window
Cheers
Sheelah