Link to home
Start Free TrialLog in
Avatar of castellansolutions
castellansolutionsFlag for United States of America

asked on

RedHat Linux - 5.8 - Drive info

Hey Experts

Easy question, I need to know the Type, Brand, Interface and Size of the HDDs in a HP DL380 gen 5

The system is running Red Hat Linux 5.8. I need to specifics of the storage so I can order a new Hard Drive. I checked on HPs website but wasn't able to find the exact HDD info.

Thanks

Robert
ASKER CERTIFIED SOLUTION
Avatar of xterm
xterm

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of castellansolutions

ASKER

ok I am having the Linux guy look at your command. I am almost certain that utility is not installed, do we need to restart the box after we install it?
Avatar of xterm
xterm

Nope, you should be able to download it as an RPM - just make sure you get the right one for your architecture - the only thing you need to choose is whether it's 32-bit or 64-bit (run uname -p if you're not sure - i686 = 32-bit, x86_64 = 64 bit)

When you download the right rpm, just do:

rpm -Uvh hpacucli-*.rpm  

Immediately afterwards you should be able to run the command I gave you above.
Avatar of Mazdajai
Try

smartlctl -a /dev/sda
dmesg|grep -Pi 'sd|hd'

Open in new window

# cat /proc/scsi/scsi   ;will provide you the model and vendor
# fdisk -l                      ;will provide you the size
ok.... So it looks like were in business. Now one last question:

1) We have a single spare hdd onsite now (not plugged in) that is 146GB - the raid array (mirror) currently contains 2x 72GB drives

I am going to pull the drive now and replace it with the 146GB drive. Would there be any reason why that would fail?

I realize that I will only have about the 50% of the drive available for use but that's ok with me.

Thanks

Robert
If the model is identical, that shouldn't fail. But it will only recolonizes 72 (usable) out of 146 with the nature of Raid1.
Sorry :

1) Currently has 2 RAID 1 Arrays. (Each array is 2x72GB drives)
2) One of the drives failed on 1 one of the arrays
3) the client has 1x 146GB spare onsite
4) I want to replace one of the failed 72GB drives with the spare 146GB drive.

Thanks,

Robert
I mean if the socket fits and the size is greater, it doesn't matter.
This solution won the day!!