How can I get the vendor name of SCSI device on linux & c?
|
feedback
|
|
You can use libudev to find SCSI devices and read the vendor attribute (untested):
| |||
|
feedback
|
|
You could look into reading /sys files if you know the device/bus id, also check lsscsi.
| |||
|
feedback
|
|
(1)open SCSI device. (2)Send SCSI command "inquiry" by ioctl. then you can get vendor name from the data returned. | |||
|
feedback
|