Các lệnh thường dùng để kiểm tra hệ thống CentOS

Lệnh kiểm tra phiên bản của CentOS
# hostnamectl
Kết quả:

   Static hostname: localhost.localdomain
         Icon name: computer-vm
           Chassis: vm
        Machine ID: a892989b0d8c43fab29fca961dbff24b
           Boot ID: c0a93bf57f61417ca8073b3847a73ab1
  Operating System: CentOS Linux 7 (Core)
       CPE OS Name: cpe:/o:centos:centos:7
            Kernel: Linux 3.10.0-229.7.2.el7.x86_64
      Architecture: x86_64

Lệnh # rpm --query centos-release

 centos-release-7-1.1503.el7.centos.2.8.x86_64

Lệnh # cat /etc/centos-release

 CentOS Linux release 7.1.1503 (Core)

Lệnh # cat /etc/os-release

NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

Lệnh # cat /etc/redhat-release

Quảng cáo

Ủng hộ website

 CentOS Linux release 7.1.1503 (Core)

Lệnh # cat /etc/system-release

 CentOS Linux release 7.1.1503 (Core)

Lệnh kiểm tra dung lượng ổ cứng

# df -h
Kết quả:

Filesystem      Size  Used Avail Use% Mounted on
/dev/vda1        20G  2.1G   17G  11% /
devtmpfs        486M     0  486M   0% /dev
tmpfs           496M     0  496M   0% /dev/shm
tmpfs           496M  6.7M  490M   2% /run
tmpfs           496M     0  496M   0% /sys/fs/cgroup
tmpfs           100M     0  100M   0% /run/user/0

Lệnh kiểm tra giống như Task Manager trong Windows (ấn Crl+C để thoát)

# top -c

Lệnh kiểm tra bộ nhớ RAM

# free -m

total used free shared buffers cached
Mem: 996 939 56 0 2 26
-/+ buffers/cache: 910 85
Swap: 1983 463 1520

Lệnh # cat /proc/meminfo

MemTotal: 1020288 kB
MemFree: 60272 kB
Buffers: 1812 kB
Cached: 35112 kB
SwapCached: 27160 kB

Lệnh kiểm tra người dùng
# cat /etc/passwd

root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin

Lệnh kiểm tra phiên bản của MySQL
# mysql --version

Kết quả nếu sử dụng MySQL

mysql  Ver 14.14 Distrib 5.7.16, for Linux (x86_64) using  EditLine wrapper

Kết quả nếu sử dụng MariaDB

mysql  Ver 14.14 Distrib 5.7.16-MariaDB, for Linux (x86_64) using readline 5.1

Add Comment