DELL32位診斷工具PEDIAGS使用
阿新 • • 發佈:2018-01-27
asd yum安裝 libz dr.com see -a 51cto del des 2.8版本的下載地址-----適用於Red Hat Enterprise 4 或 5 :
http://ftp.us.dell.com/diags/dell-pediags-linux-2.8.0.398-A01.tar.gz cd pediags/
[root@cacti pediags]# ./install.sh
Do you agree to the above license terms? (‘y‘ for yes | ‘Enter‘ to exit): y Linux的有些軟件需要32位運行庫才能運行,如Dr.com客戶端等
yum在線安裝: sudo
或者: sudo yum install ia32-libs.i686
ubuntu下: sudo apt-get install ia32-libs
http://ftp.us.dell.com/diags/dell-pediags-linux-2.8.0.398-A01.tar.gz
[root@cacti ~]# ll dell-pediags-linux-2.8.0.398-A01.tar.gz
-rw-r--r--. 1 root root 11559976 Apr 12 2007 dell-pediags-linux-2.8.0.398-A01.tar.gz
[root@cacti ~]# tar xf dell-pediags-linux-2.8.0.398-A01.tar.gz
[root@cacti pediags]# ./install.sh
Do you agree to the above license terms? (‘y‘ for yes | ‘Enter‘ to exit): y
[root@cacti bin]# ./pediags --show all
./pediags: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
問題原因和解決辦法:
其實這個問題就是你64位的操作系統沒有32位的類庫
yum在線安裝: sudo
或者: sudo yum install ia32-libs.i686
ubuntu下: sudo apt-get install ia32-libs
采用yum安裝解決:
yum install xulrunner.i686 -y
./pediags --show all 列出可供檢測的設備
[root@cacti bin]# ./pediags --show all The available device class(es) are: Command : Description cddvd : Runs CDDVD diagnostics. floppy : Runs Floppy diagnostics. memory : Runs Memory diagnostics. modem : Runs Modem diagnostics. network : Runs Network diagnostics. rac : Runs RAC diagnostics. serialport : Runs Serial Port diagnostics. raidctrl : Runs RAID device diagnostics. idedevdiag : Runs diagnostics for IDE disk and tape devices. sasdevdiag : Runs diagnostics for SAS controller and attached devices. scsidevdiag : Runs diagnostics for SCSI controller and attached devices. usbctrl : Runs diagnostics for USB Root Hubs.
[root@cacti opt]# cd /opt/dell/pediags/oldiags/bin
對內存的檢測:
[root@cacti bin]# ./pediags memory --run quicktest=true
...
Device Name : System Memory
Description : Memory device(s) installed in the system
Device Location : Memory
Test Name : Status Test
Description : Reports the health status of system memory by reading and interpreting Hardware Log events. See the online help of Memory Diagnostics for more information.
Passes : 1
Result : passed
Start Time : Fri Jan 26 22:40:52 2018
Completion Time : Fri Jan 26 22:40:52 2018
Result Event : The test operation completed successfully. No errors found.
對網卡的檢測:[root@cacti ~]# ./pediags raidctrl --run quicktest=true
參考文檔:
https://wenku.baidu.com/view/50f9142a2f60ddccda38a0b7.html
http://blog.51cto.com/imysql/1879731
DELL32位診斷工具PEDIAGS使用