Check Linux Server OS Version
To check the system version of a Linux server, you can use one of the following commands:
- Use the lsb_release command:
lsb_release -a
- View the /etc/os-release file using the cat command.
cat /etc/os-release
- Utilize the uname command:
uname -a
Any of the above commands can display the system version information of a Linux server.