我在 azure linux 虚拟机上有两个磁盘,sda 和 sdb
I have two disks on azure linux VM, sda and sdb
我不使用/dev/sdb而且我无法删除它。在 Azure->Disks 中我只有 Os_Disk 30GB,在磁盘的 VM 选项卡中也只有 Os_Disk。
fdisk -l
显示 2 个磁盘:
Disk /dev/sda: 30 GiB, 32212254720 bytes, 62914560 sectors
Disk model: Virtual Disk
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: ...
Device Start End Sectors Size Type
/dev/sda1 262144 62914526 62652383 29.9G Linux filesystem
/dev/sda14 2048 8191 6144 3M BIOS boot
/dev/sda15 8192 262143 253952 124M EFI System
Partition table entries are not in disk order.
Disk /dev/sdb: 20 GiB, 21474836480 bytes, 41943040 sectors
Disk model: Virtual Disk
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: ...
Device Boot Start End Sectors Size Id Type
/dev/sdb1 2048 41940991 41938944 20G 7 HPFS/NTFS/exFAT
我的虚拟机标准是A2_v2
我对 Azure 完全陌生,感谢您的帮助
Azure A_v2-Series VM 附加了额外的临时磁盘(在您的情况下是 /dev/sdb
)
临时磁盘为应用程序和进程提供短期存储,旨在仅存储页面或交换文件等数据。
在维护事件、关闭或重新部署 VM 期间,临时磁盘上的数据可能会丢失。在 VM 成功标准重启期间,临时磁盘上的数据将保留。
https://azure.microsoft.com/en-us/blog/new-av2-series-vm-sizes/
https://docs.microsoft.com/en-us/azure/virtual-machines/managed-disks-overview#temporary-disk
我不使用/dev/sdb而且我无法删除它。在 Azure->Disks 中我只有 Os_Disk 30GB,在磁盘的 VM 选项卡中也只有 Os_Disk。
fdisk -l
显示 2 个磁盘:
Disk /dev/sda: 30 GiB, 32212254720 bytes, 62914560 sectors
Disk model: Virtual Disk
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: gpt
Disk identifier: ...
Device Start End Sectors Size Type
/dev/sda1 262144 62914526 62652383 29.9G Linux filesystem
/dev/sda14 2048 8191 6144 3M BIOS boot
/dev/sda15 8192 262143 253952 124M EFI System
Partition table entries are not in disk order.
Disk /dev/sdb: 20 GiB, 21474836480 bytes, 41943040 sectors
Disk model: Virtual Disk
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: ...
Device Boot Start End Sectors Size Id Type
/dev/sdb1 2048 41940991 41938944 20G 7 HPFS/NTFS/exFAT
我的虚拟机标准是A2_v2
我对 Azure 完全陌生,感谢您的帮助
Azure A_v2-Series VM 附加了额外的临时磁盘(在您的情况下是 /dev/sdb
)
临时磁盘为应用程序和进程提供短期存储,旨在仅存储页面或交换文件等数据。
在维护事件、关闭或重新部署 VM 期间,临时磁盘上的数据可能会丢失。在 VM 成功标准重启期间,临时磁盘上的数据将保留。
https://azure.microsoft.com/en-us/blog/new-av2-series-vm-sizes/
https://docs.microsoft.com/en-us/azure/virtual-machines/managed-disks-overview#temporary-disk