Howto find out information about Unix System

ht‮//:spt‬www.lautturi.com
Howto find out information about Unix System

There are several ways to find out information about a Unix system, including the following:

  1. uname command: The uname command displays information about the system, including the operating system name, the hostname, and the kernel version.
uname -a
  1. lsb_release command: The lsb_release command displays information about the Linux distribution, including the distribution name and version.
lsb_release -a
  1. hostname command: The hostname command displays the hostname of the system.
hostname
  1. uptime command: The uptime command displays the uptime of the system, as well as the load average over the past 1, 5, and 15 minutes.
uptime
  1. free command: The free command displays information about the system's memory usage.
free -m
  1. df command: The df command displays information about the system's disk usage.
df -h
  1. cat /etc/*release: The /etc/*release files contain information about the operating system and distribution. You can use the cat command to view the contents of these files.
cat /etc/*release
Created Time:2017-10-29 22:08:46  Author:lautturi