1.cat /proc/cpuinfo:檢視cpu的資訊
1.1 cat /proc/cpuinfo | grep "processor" | wc –l:檢視邏輯cpu個數
1.2 cat /proc/cpuinfo | grep "physical id" | sort -u | wc –l:檢視物理cpu個數
1.3 cat /proc/cpuinfo | grep "core id" | uniq | wc –l:cpu啟用的超執行緒
2.cat /proc/meminfo:檢視記憶體資訊
3.fdisk –l:檢視磁碟資訊
4.whoami:檢視當前使用者身份
5.top:檢視當前執行程序(動態)
6.ps -aux:檢視所有使用者的執行程序
7.chkconifg --list:檢視系統服務
8.service [服務名] status:檢視指定的系統服務
9.ipconfig:檢視網路配置和網絡卡狀態
9.1 ipconfig [網絡卡名]:檢視指定網絡卡狀態資訊
Linux基本命令三
使用者管理 使用者賬戶 1.可以登入作業系統 2.實現訪問控制 不同的使用者許可權不同 組賬戶 方便對使用者管理 唯一表識 uid gid 系統賬戶 0 999 普通賬戶 1000 往上 useradd 建立使用者命令 useradd u 數字 使用者名稱 指定使用者uid useradd d 目錄...
Linux基本命令(三)
1 vim下跳轉到首行 末行 第一種方式 跳轉到最後一行 1 跳轉到第一行 第二種方式 shift g 跳轉到最後一行 gg 跳轉到第一行 第三種方式 g 移動到最後一行 gg 移動到這個檔案的第一行,相當於 1g 啊!常用 2 顯示行號 set number set nu3 複製 yy4 貼上 5...
linux 基本命令(三)
1 顯示當前所在位置 命令 pwd 2 搜尋命令 命令 grep 要搜尋的字串 要搜尋的檔案 示例 搜尋 usr sudu.conf檔案中包含字串to的行 示例 搜尋 usr sudu.conf檔案中包含字串to的行 to要高亮顯示 3 檢視程序 命令 ps ef 示例 檢視當前系統中執行的程序 4...