How to check the version information of the current Linux system?
To view the version information of the current Linux system, you can use one of the following commands:
- What is your system’s information?
uname -a
- Display all information about the release.
lsb_release -a
- Display the contents of the file named os-release in the directory etc in Linux.
cat /etc/os-release
- Display the contents of the file /etc/issue
cat /etc/issue
The above command can be used to view the version information of the current Linux system.