Identify disks on an LSI SAS1068E controller

7,169

Solution 1

Answering my own question - had totally forgotten about OpenManage (OMSA). Installing this beast and several megs of rpms later:

[root@computeu1n5 ~]# omreport storage pdisk controller=0
List of Physical Disks on Controller SAS 6/iR Adapter (Slot 1)

Controller SAS 6/iR Adapter (Slot 1)
...
ID                        : 0:1
Status                    : Ok
Name                      : Physical Disk 0:1
...
Serial No.                : WD-WCAS2208118581185
...

BINGO!

Solution 2

This command will show serial numbers of discs attached to a LSI SAS controller:

yum install lsscsi /usr/bin/lsscsi -g smartctl -a /dev/sg0

Share:
7,169

Related videos on Youtube

bee
Author by

bee

Updated on September 17, 2022

Comments

  • bee
    bee over 1 year

    I'm trying to identify clearly which disk needs replacing in a RAID1 array. The controller shows it's PhysDisk 0 id=1. When opening up the machine how do I know for sure which disk this is? (Ideally by serial number on disk and not just physical cable connected to..)

    Is there a way to show the serial numbers of disks through the lsiutil command line utility or otherwise?

    Centos 5.4

    Dell Poweredge R300

    Dell (pretend) RAID SAS6iR controller (aka LSI SAS0168E)

    2x WD 160Gb disks

  • bee
    bee over 13 years
    I can't see that option and as the drives are internal and not hot-swappable from what I remember so there aren't external status lights as on say the PERC controllers. It really is a crap controller!
  • bee
    bee over 13 years
    It doesn't seem to. The 1068E is barely more than a software RAID controller sobs.
  • bee
    bee over 13 years
    Alternatively - credit to Tim on linux-poweredge list: lscsi -g and sg_inq do the trick (in packages lsscsi sg3_utils). Without requiring megabytes of omsa overkill!