Check the system version on Linux (graphic tutorial)

Insert image description here

Welcome everyone to follow the official account [Xiaobai Technology Circle] and send B02 or b02 to receive a gift package of Linux learning materials!

Separately view Linux Screen version informationJapaneseInner core version

View Linux distributions

Open your terminal and enter the following command:

cat /etc/os-release

cat is the abbreviation of concatenate, we use it here to read the file /etc/os-release. This file contains information such as your system's name and version number.

View Linux distributions

View Linux distributions

View Linux kernel version

If you want to dig a little deeper and find out what version of the Linux kernel you have, then you can try typing the following command:

uname -r

Theuname command here is the abbreviation ofunix name, and the -r parameter meansrelease. So, this command will tell you your kernel version.

View Linux kernel version

View Linux kernel version

Guess you like

Origin blog.csdn.net/lcmaijia/article/details/134292357