raid10環境下換硬碟還是很簡單的,支援熱插拔,直接拔下換掉就可以了,下面是操作步驟。
伺服器: r720
系統: centos7
# /opt/megaraid/megacli/megacli64 -pdlist -aall -nolog
enclosure device id: 32
slot number: 3
drive's position: diskgroup: 0, span: 1, arm: 1
enclosure position: 1
device id: 3
wwn: 5000c500400af8dd
sequence number: 3
media error count: 0
other error count: 11
predictive failure count: 0
last predictive failure event seq number: 0
pd type: sata
raw size: 1.819 tb [0xe8e088b0 sectors]
non coerced size: 1.818 tb [0xe8d088b0 sectors]
coerced size: 1.818 tb [0xe8d00000 sectors]
sector size: 0
firmware state: failed
device firmware level: pa03
# /opt/megaraid/megacli/megacli64 -pdoffline -physdrv[32:3] -a0
32和3的對應關係:
enclosure device id: 32
slot
number: 3
此時故障硬碟已經offline,在伺服器現場檢視時,故障硬碟閃爍的是黃燈,正常硬碟的綠燈;
拔下故障硬碟,插上好硬碟,硬碟燈閃爍為綠色,並硬碟快速旋轉,表示硬碟正在rebuild狀態,如下:
# /opt/megaraid/megacli/megacli64 -pdlist -aall -nolog
...enclosure device id: 32
slot number: 3
...firmware state: rebuild
...
rebuild progress on
device at enclosure 32, slot 3 completed 16% in
94 minutes.
# /opt/megaraid/megacli/megacli64 -pdlist -aall -nolog | grep 'firmware state'
firmware state: online, spun up
firmware state: online, spun up
firmware state: online, spun up
firmware state: online, spun up
win10環境下tensorflow gpu安裝
踩了很多坑,浪費了一下午時間,在此記錄一下。注意 只能用8.0 其中,cudnn的安裝方法是將cudnn下面的三個資料夾 bin,include,lib 複製到cuda 8.0資料夾。裝完以後執行,出現以下錯誤 importerror no module named pywrap tensorflo...
Win10環境下安裝pytorch
注意 pytorch0.4.0才開始支援windows pip install pytorch torchvision這個是安裝命令,不用多說 下面看看遇到的問題 反正就是不行,但是我換linux一次就搞定,不得不說對win相容性真差勁。命令列如下 pip3 install pip3 install...
windows10環境下執行Debug
1.什麼是debug?debug是dos windows都提供的實模式 8086方式 程式的除錯工具。使用它,可以檢視cpu各種暫存器中的內容 記憶體的情況和在機器碼級別跟蹤程式的執行。2.常用的debug功能 用debug的r命令檢視 改變cpu暫存器的內容 用debug的d命令檢視記憶體中的內容...