To find out information about the system in the Linux console, there are several commands, the operation and output of which we will present below.
1. Kernel information
uname -a
or
cat /proc/version
2. Operating system and version
cat /etc/os-release
3. Hardware information
apt install dmidecode
dmidecode
This tool displays information hardcoded into the Bios of physical equipment, so output to virtualization VPS is not available; for virtual servers, use the commands described below.
3.1 Information about the processor and memory
lscpu
or
apt install lshw
lshw
3.2 Information about disk and partitions
fdisk -l
or
lsblk -a
No Comments Yet