After adding a vdisk to an ESXi linux guest you will assert that you can't find a new device in the running VM. You have to force a SCSI rescan.
- find your host bus number with:
grep mtpspi /sys/class/scsi_host/host?/proc_name
- output should look like this: /sys/class/scsi_host/host2/proc_name:mptspi where the bold part is what you're searching for
- force an SCSI rescan with
echo "- - -" > /sys/class/scsi_host/<host>/scan
and insert the host found in point two for<host>
-
cat /proc/scsi/scsi
should now show the new added device
Posted by Claus-Theodor Riegg to makandra dev (2015-05-06 12:53)