Home >Operation and Maintenance >Linux Operation and Maintenance >How to check system version information in linux
Today I will tell you several ways to check the version information of Linux system, raksmart server.
1. Check the Linux kernel version command (two methods):
1. cat / proc/version (Recommended learning: linux operation and maintenance)
##2. uname -a
2. Command to check the Linux system version (3 methods):
1, lsb_release -a, that’s it List all version information:
This command applies to all Linux distributions, including RedHat, SUSE, Debian... and other distributions.2. cat /etc/redhat-release. This method is only suitable for Redhat-based Linux:
[root@S-CentOS home]# cat /etc/redhat-release CentOS release 6.5 (Final)
3. cat /etc/issue, This command also works on all Linux distributions.
The above is the detailed content of How to check system version information in linux. For more information, please follow other related articles on the PHP Chinese website!