- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Getting rid of system info at login screen
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
09-10-2002 02:41 AM
09-10-2002 02:41 AM
Just above our login prompt, there is a line which states the output of uname -nrsvm
Does anyone know how to get rid of this?
Any Help Appreciated
Michael
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 02:46 AM
09-10-2002 02:46 AM
Re: Getting rid of system info at login screen
Check in /etc/profile to see if it's coming from there.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 02:50 AM
09-10-2002 02:50 AM
Re: Getting rid of system info at login screen
No, I did get rid of some other rubbish from in /etc/profile but the info I want to stop is coming up before the login prompt so I was thinking that it was something to do with getty perhaps. I looked at /etc/issue but that doesn't seem to be it either. Any other ideas?
Regards
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 02:50 AM
09-10-2002 02:50 AM
Re: Getting rid of system info at login screen
check /etc/issue file
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 02:52 AM
09-10-2002 02:52 AM
Re: Getting rid of system info at login screen
#strings /etc/gettydefs
look for any relevant string.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 03:03 AM
09-10-2002 03:03 AM
Re: Getting rid of system info at login screen
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 03:09 AM
09-10-2002 03:09 AM
Re: Getting rid of system info at login screen
The login command is calling uname at login which means that it cannot be changed.
Modifying /etc/gettydefs will only change the "login" prompt. It won't affect the uname output.
Example:
H # B9600 SANE CLOCAL CS8 IXANY TAB3
# B9600 SANE CLOCAL CS8 IXANY TAB3
#login: #H <--- Modifying this line
will produce similar results:
HP-UX wrong B.11.00 U 9000/K580 (ttyp3)
login: root
Password:
Please wait...checking for disk quotas
Copyright message goes here....
New Login:
I think there was an ER to change this behavior. I am still looking for the ER # and will post back if I find it.
Cheryl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-10-2002 03:24 AM
09-10-2002 03:24 AM
SolutionThis is for telnet :
# vi /etc/issue
WARNING! UNAUTHORIZED USE PROHIBITED
and not as default :
HP-UX server B.11.00 blabla
# vi /etc/inetd.conf
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue
# inetd -c
This is for CDE:
# cp /usr/dt/config/C/Xresources /etc/dt/config/C/Xresources
# vi /etc/dt/config/C/Xresources
Dtlogin*greeting*labelString: "WARNING! UNAUTHORIZED USE PROHIBITED!"
# /sbin/init.d/dtlogin.rc reset
BR,
Jannik