How to check for the OS version and hardware structure on the Linux server
We can check the installed OS version on the Linux server with the help of the files below:-
[[email protected]]# cat /etc/redhat-release
CentOS release 5.X(Final)
[[email protected]er]# cat /etc/issue
CentOS release 5.X (Final)
Kernel \r on an \m
We can check the hardware structure with the help of the command below:-
[[email protected]]# uname -a
Linux testwebserver 2.6.18-348.3.1.el5 #1 SMP Mon Mar 11 19:39:25 EDT 2013 x86_64 x86_64 x86_64 GNU/Linux
No comments