In the Tools, System Devices page, SCSI devices are shown similar to this:
[0:0:0:0] cd/dvd HL-DT-ST DVDRAM GP60NB60 RF01 /dev/sr0 8.37GB
[1:0:0:0] disk Samsung Flash Drive FIT 1100 /dev/sda 64.1GB
[3:0:0:0] disk ATA TOSHIBA MQ01ABD1 1Q /dev/sdb 1.00TB
[4:0:0:0] disk ATA HGST HTS541010A9 A560 /dev/sdc 1.00TB
It would be super helpful if the "generic SCSI" device names were shown too, as this would be handy when, for instance, needing to pass devices to a Docker container.
An example use case is MakeMKV Docker, which requires both the SR and SG devices for a DVD drive to be passed to it.
Assuming this is done by running the lsscsi command, the -g option would add this.
Example output:
root@Tower:~# lsscsi -sg
[0:0:0:0] cd/dvd HL-DT-ST DVDRAM GP60NB60 RF01 /dev/sr0 /dev/sg0 8.37GB
[1:0:0:0] disk Samsung Flash Drive FIT 1100 /dev/sda /dev/sg1 64.1GB
[3:0:0:0] disk ATA TOSHIBA MQ01ABD1 1Q /dev/sdb /dev/sg2 1.00TB
[4:0:0:0] disk ATA HGST HTS541010A9 A560 /dev/sdc /dev/sg3 1.00TB