How to check the system version in Linux?
To check the version of the Linux operating system, you can use the following command:
- Use the lsb_release command:
lsb_release -a
- View the /etc/os-release file using the cat command.
cat /etc/os-release
- Using the uname command:
uname -a
These commands will display version information of the Linux system, including distribution name, version number, kernel version, etc.