- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Regarding /etc/issue
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-18-2003 06:08 PM
06-18-2003 06:08 PM
Regarding /etc/issue
I did make a logo in the /etc/issue file. I want to run the file that users will see it everytime they login to the unix server. How can I do it?
Thanks
Regards
Ajk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 06:13 PM
06-18-2003 06:13 PM
Re: Regarding /etc/issue
If you need to show user after logon you can add it in the .profile file.
Picture logo ??? I'm not sure whether this can be done.
regards
mB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 06:14 PM
06-18-2003 06:14 PM
Re: Regarding /etc/issue
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b/etc/issue
2. restart inetd,
# /sbin/init.d/inetd stop
# /sbin/init.d/inetd start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 06:29 PM
06-18-2003 06:29 PM
Re: Regarding /etc/issue
add this entry to the line of telnet in /etc/inetd.conf
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue
and rlogin as well
login stream tcp nowait root /usr/lbin/rlogind rlogind -B /etc/issue
get inetd to re-read it's config file.
# inetd -c
Be careful what you place in /etc/issue. There should not be too much information. If you wish to give users messages, the /etc/motd could better ustilised.
Regards
Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 06:31 PM
06-18-2003 06:31 PM
Re: Regarding /etc/issue
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b /etc/issue
login stream tcp nowait root /usr/lbin/rlogind rlogind -B /etc/issue
So use both rlogin and telnet.
inetd -c to use without reboot.
Also, be wary of adding in any sensitive information like copyrights, hostnames, ip addresses, etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2003 06:35 PM
06-18-2003 06:35 PM
Re: Regarding /etc/issue
Regards
Ajk