系統基本資訊 linux

2021-06-27 11:04:45 字數 3687 閱讀 1186

檢視cpu

1.1 

檢視cpu

個數# cat /proc/cpuinfo | grep "physical id" | uniq | wc -l

2**uniq

命令:刪除重複行

;wc –l

命令:統計行數

**1.2 

檢視cpu

核數# cat /proc/cpuinfo | grep "cpu cores" | uniq

cpu cores : 4

1.3 

檢視cpu

型號# cat /proc/cpuinfo | grep 'model name' |uniq

model name : intel(r) xeon(r) cpu e5630 @ 2.53ghz

總結:該伺服器有2個4

核cpu

,型號intel(r) xeon(r) cpu e5630 @ 2.53ghz

2 檢視記憶體

2.1 

檢視記憶體總數

#cat /proc/meminfo | grep memtotal

memtotal: 32941268 kb //

記憶體32g

2.2 

檢視記憶體條數

檢視記憶體條數》

# dmidecode |grep -a16 "memory device$"

memory device

array handle: 0x1000

error information handle: not provided

total width: 72 bits

data width: 64 bits

size: 2048 mb //1條2g

記憶體form factor: dimm

set: 1

locator: dimm1

bank locator: not specified

type: ddr2

type detail: synchronous

speed: 667 mhz

manufacturer: 7f7f7f7f7f510000

serial number: 0403e324

asset tag: 450721

part number: 72t256220hr3sa

--memory device

array handle: 0x1000

error information handle: not provided

total width: 72 bits

data width: 64 bits

size: 2048 mb //1條2g

記憶體form factor: dimm

set: 1

locator: dimm2

bank locator: not specified

type: ddr2

type detail: synchronous

speed: 667 mhz

manufacturer: 7f7f7f7f7f510000

serial number: 0403e324

asset tag: 450721

part number: 72t256220hr3sa

--memory device

array handle: 0x1000

error information handle: not provided

total width: 72 bits

data width: 64 bits

size: no module installed //1

個記憶體空槽

form factor: dimm

set: 2

locator: dimm3

bank locator: not specified

type: ddr2

type detail: synchronous

speed: unknown

manufacturer:

serial number:

asset tag:

part number:

--memory device

array handle: 0x1000

error information handle: not provided

total width: 72 bits

data width: 64 bits

size: no module installed //1

個記憶體空槽

form factor: dimm

set: 2

locator: dimm4

bank locator: not specified

type: ddr2

type detail: synchronous

speed: unknown

manufacturer:

serial number:

asset tag:

part number:

--memory device

array handle: 0x1000

error information handle: not provided

total width: 72 bits

data width: 64 bits

size: no module installed //1

個記憶體空槽

form factor: dimm

set: 3

locator: dimm5

bank locator: not specified

type: ddr2

type detail: synchronous

speed: unknown

manufacturer:

serial number:

asset tag:

part number:

--memory device

array handle: 0x1000

error information handle: not provided

total width: 72 bits

data width: 64 bits

size: no module installed //1

個記憶體空槽

form factor: dimm

set: 3

locator: dimm6

bank locator: not specified

type: ddr2

type detail: synchronous

speed: unknown

manufacturer:

serial number:

asset tag:

part number:

總結:該伺服器有兩條2g

記憶體 ,空餘

4個插槽

3 檢視硬碟

3.1 

檢視硬碟大小

# fdisk -l | grep disk

disk /dev/cciss/c0d0: 146.7 gb, 146778685440 bytes

總結:硬碟大小146.7g

,即廠商標稱的

160g

Linux網路基本資訊配置

2.雙ip配置方法 今天在專案搭建中,遇到乙個需要給伺服器配置雙ip的情況,記錄一下解決方法。ip a根據上訴顯示的網絡卡資訊,修改對應的網絡卡配置檔案 eth3為例 修改完成後,重啟網絡卡或網路服務即可 ifup eth3service network restart如果是在vmware中直接拷貝...

Linux檔案的基本資訊

linux下一切皆檔案,檔名嚴格區分大小寫,且同一目錄下普通檔案和目錄不能重名 基本的檔案的管理包括檔案的增 刪 查 改 1 檔案許可權 檔案許可權就是檔案的訪問控制許可權,即哪些使用者和組群可以訪問檔案以及可以執行什麼樣的操作。unix linux系統是乙個典型的多使用者系統,不同的使用者處於不同...

執行緒基本資訊

六 執行緒基本資訊 isalive 判斷執行緒是否還 活 著,即執行緒是否還未終止 getpriority 獲得執行緒的優先順序資料 setpriority 設定執行緒的優先順序資料 優先順序 概率,不是絕對的優先順序 max priority 10 noem priority 5 預設 min p...