天天看點

【Linux學習筆記5】系統日常運維指令總結1.檢視本機目前的網卡資訊與網絡狀态2.檢視Linux核心版本、發行版本資訊3.檢視系統的負載情況4.檢視目前系統記憶體使用情況5.檢視登入主機的使用者

1.檢視本機目前的網卡資訊與網絡狀态

[email protected]:~$ ifconfig
ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.117.128  netmask 255.255.255.0  broadcast 192.168.117.255
        inet6 fe80::4ea7:5bee:5291:98cd  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:ed:4b:42  txqueuelen 1000  (以太網)
        RX packets 6243  bytes 4493553 (4.4 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 3843  bytes 327930 (327.9 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (本地環回)
        RX packets 931  bytes 85163 (85.1 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 931  bytes 85163 (85.1 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
           

各參數解釋如下:

參數 解釋
【ens33】 網卡名稱
【UP】 表示網卡是開啟狀态
【BROADCAST】 表示網卡支援廣播
【RUNNING】 表示網卡的網線已經被接上
【MULTICAST】 表示網卡支援多點傳播
【mtu】 網絡最大傳輸單元
【inet】 IPv4位址
【inet6】 IPv6位址
【netmask】 子網路遮罩
【broadcast】 廣播位址
【txqueuelen】 傳輸資料的緩沖區的儲存長度
【RX packets】 網絡從啟動到現在為止接收的資料包大小,機關是位元組,error 發生錯誤的資料包,dropped 被丢棄的資料包
【collisions】 發生碰撞的資料包,如果發生太多次,表明網絡狀況不太好

2.檢視Linux核心版本、發行版本資訊

方法一:

[email protected]:~$ uname -a
Linux znj-virtual-machine 5.11.0-27-generic #29~20.04.1-Ubuntu SMP Wed Aug 11 15:58:17 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
           

方法二:

[email protected]:~$ cat /proc/version
Linux version 5.11.0-27-generic ([email protected]) (gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #29~20.04.1-Ubuntu SMP Wed Aug 11 15:58:17 UTC 2021
           

以我的虛拟機為例,5.11.0-27是Linux的核心版本,Ubuntu是發行版本資訊。

3.檢視系統的負載情況

[email protected]:~$ uptime
 19:46:53 up  4:15,  1 user,  load average: 0.00, 0.01, 0.00
           

以上三個資料分别代表了最近1分鐘、5分鐘、15分鐘系統的負載情況(越低越好,小于1是正常)

4.檢視目前系統記憶體使用情況

[email protected]:~$ free -h
              總計         已用        空閑      共享    緩沖/緩存    可用
記憶體:       1.9Gi       904Mi       283Mi       1.0Mi       765Mi       891Mi
交換:       923Mi          0B       923Mi
           

順便解釋一下,Mi指的是1024*1024

5.檢視登入主機的使用者

[email protected]:~$ who
znj      :0           2021-09-17 15:31 (:0)
           

顯示了登入的使用者名和登入時間

繼續閱讀