how to detect the serial number

Hello guys,

can you tell me please which FreeBSD command shows the serial number of the devices connected (HD, USB, SATA, ....) ?

Thanks in advance.
 
You can usually get the disk drive serial number with
Code:
camcontrol identify /dev/ada0
, assuming that ada0 is your device.
Code:
diskinfo -v /dev/ada0
will also give you the serial number.
 
Back
Top