1. Microsoft Learn
"Configure LVM on a Linux VM in Azure": This document demonstrates using the /dev/disk/azure/scsi1/ path to identify disks by their LUN. Under the "Identify the data disks" section
it shows the command ls -l /dev/disk/azure/scsi1/ and its output
which clearly maps lun0
lun1
etc.
to their corresponding /dev/sd device names.
2. Microsoft Learn
"Azure Virtual Machines storage configuration for SAP NetWeaver": In the "Linux" section
this guide states
"On Linux
the Azure platform creates friendly names in the directory /dev/disk/azure. For your automation scripts
use the devices in the /dev/disk/azure directory." This confirms the recommended practice for SAP workloads is to use this stable path for disk identification.
3. Microsoft Learn
"Troubleshoot Linux VM device name changes": This article explains the problem of non-persistent device names and recommends using persistent naming conventions. It mentions that the Azure Linux Agent creates symbolic links under /dev/disk/azure based on the SCSI address (including LUN) of the disks
reinforcing the reliability of this path for correlation.