How to check system information in Debian?
To view information about a Debian system, you can use the following command:
- View system version information:
lsb_release -a
- View the kernel version of the system:
uname -a
- View CPU information:
cat /proc/cpuinfo
- View memory information.
free -h
- View information about the hard drive space.
df -h
- View network interface information:
ip a
The above command can be used to view basic information about the Debian system, which can help in understanding the system’s configuration and performance.