Share via

Disk not matching

Abdulqareeb Shukri 20 Reputation points
2026-01-11T00:43:51.2766667+00:00

i see in portal.azure this configuration Storage type = Premium SSD LRS for my disk but when i open my virtual machine i see disk type = HDD (SAS) why this?

Azure Virtual Machines
Azure Virtual Machines

An Azure service that is used to provision Windows and Linux virtual machines.

0 comments No comments

Answer accepted by question author

Marcin Policht 92,630 Reputation points MVP Volunteer Moderator
2026-01-11T01:31:00.7466667+00:00

That's expected - these two settings are not equivalent. Azure premium disks are block devices stored on SSD, but the guest OS never sees the physical media. What the OS reports is the virtual controller and bus presented by the underlying hypervisor. Premium, Standard SSD and Standard HDD managed disks are all exposed through the same virtual SCSI stack, and many OS tools label that as SAS or SCSI instead of SSD because they have no way to probe the actual backing storage.

Inside a VM you do not have direct access to the underlying hardware, so tools like lsblk, fdisk, or Device Manager in Windows determine the disk type based on the presented controller type. When they see a virtual SCSI device they default to showing HDD or SAS even if the real storage is SSD.

The authoritative source is the Azure control plane (portal, ARM, CLI). If the disk resource says Premium SSD LRS then the data is on SSD even if the OS reports HDD.


If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

hth

Marcin

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.