博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
DELL32位诊断工具PEDIAGS使用
阅读量:7102 次
发布时间:2019-06-28

本文共 2205 字,大约阅读时间需要 7 分钟。

2.8版本的下载地址-----适用于Red Hat Enterprise 4 或 5 :

[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

cd pediags/
[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位的类库
Linux的有些软件需要32位运行库才能运行,如Dr.com客户端等
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 allThe available device class(es) are:Command       : Descriptioncddvd         : 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 MemoryDescription     : Memory device(s) installed in the systemDevice Location : MemoryTest Name       : Status TestDescription     : 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          : 1Result          : passedStart Time      : Fri Jan 26 22:40:52 2018Completion Time : Fri Jan 26 22:40:52 2018Result Event    : The test operation completed successfully. No errors found.

对网卡的检测:

[root@cacti ~]# ./pediags raidctrl --run quicktest=true

参考文档:

转载于:https://blog.51cto.com/wujianwei/2065668

你可能感兴趣的文章