Ha, got it, this is easy if telnet is enabled on your box.
Do a "telnet localhost", the login screen should reveal your distribution and version. IBM Certified Confused - MQSeries
IBM Certified Flabbergasted - AIX 5 pSeries System Administration
Looking in the /usr/src did the trick, this was indeed a redhat dist. Any quick idea on how to find which release? I have a feeling this is 7.3 but just to be sure....
When you telnet to a machine, the greeting you see comes from the /etc/issue file.
[root@cp root]# cat /etc/issue
Red Hat Linux release 7.3 (Valhalla)
Kernel \r on an \m
The /proc/version file might be of interest also...
[root@cp root]# cat /proc/version
Linux version 2.4.18-3 (bhcompile@daffy.perf.redhat.com) (gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-110)) #1 Thu Apr 18 07:37:53 EDT 2002
If you still want to enable telnet anyway, modify the /etc/xinetd.d/telnet file....
[root@cp root]# cat /etc/xinetd.d/telnet
# default: on
# description: The telnet server serves telnet sessions; it uses # unencrypted username/password pairs for authentication.
service telnet
{
disable = yes
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.