Linux 常用操作 檢視系統資訊與資源

2022-07-09 01:00:15 字數 1068 閱讀 8122

目錄網路

時間hosts

# 版本

cat /etc/*ease

# 核心

cat /proc/version

uname -a

# cpu

cat /proc/cpuinfo

# 磁碟

df -h

# 記憶體

free -wh

# cpu 記憶體

vmstat

# 5秒取樣,直至中斷

vmstat 5

# 5秒取樣,共5次

vmstat 5 5

# 前十的 cpu 占用

ps -eo pid,ppid,%mem,%cpu,cmd --sort=-%cpu | head -11

# 前十的記憶體占用

ps -eo pid,ppid,%mem,%cpu,cmd --sort=-%mem | head -11

# 批處理模式

top -cb | head -20

# 按記憶體、cpu排序

top -co +%mem

top -co +%cpu

top 顯示模式切換

按 1 cpu多核

按 b 全域性高亮

按 y 執行態高亮

按 < > 切換排序列

按 f 編輯顯示列

ipconfig
curl myip.ipip.net

curl ipinfo.io/json

netstat -pant
# 系統時間,中國 +0800

date -r

# 設定時區

tzselect

# 硬體時間

hwclock

cat /etc/hosts
標籤:linux

Linux檢視系統資訊

1.檢視系統核心 uname a uname r file sbin init 通過file命令判斷系統中的檔案時32位還是64位的 64位cpu系統架構可以安裝32位或64位的系統,而32為的cpu架構只能安裝32位的系統 2.檢視伺服器使用的linux發行版的名稱,版本號及描述資訊等 lsb r...

linux檢視系統資訊

通用命令 root centos68 more etc issue centos release 6.9 final redhat 系 root centos68 cat etc redhat release centos release 6.9 final 檢視系統核心及系統名稱 root cen...

Linux 檢視系統資訊

摘要 1 輸入 uname a 可顯示電腦以及作業系統的相關資訊。uname alinuxhadoop02.zjl com2.6 32 696.el6.x86 64 1smptuemar2119 29 05utc2017x86 64x86 64x86 64gnu linux2 輸入 cat proc...