Nach einigen Tests glaube ich, dass Ihr Problem mit der Verwendung einer leeren Festplatte zusammenhängt. In meinem Fall habe ich eine leere Festplatte und eine formatierte Festplatte an die VM angeschlossen. Die formatierte Festplatte wurde als "/ dev / sdc1" erkannt, aber die leere Festplatte wurde nicht angezeigt.
dh
ls -altr /dev/disk/by-uuid/
total 0
lrwxrwxrwx 1 root root 10 Nov 11 16:50 40206d63-43a8-4d1c-8588-581cefb022a3 -> ../../sda1
lrwxrwxrwx 1 root root 10 Nov 11 17:34 7f63bd57-6ccd-4cea-b0f0-9544870bf67a -> ../../sdc1
"Fdisk -l" zeigte an, dass die Festplatte nicht partitioniert war, bestätigte jedoch, dass sie als / dev / sdb an die VM angeschlossen war
sudo fdisk -l
Disk /dev/sda: 10 GiB, 10737418240 bytes, 20971520 sectors
.....
/dev/sda1 * 4096 20971519 20967424 10G 83 Linux
Disk /dev/sdb: 10 GiB, 10737418240 bytes, 20971520 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/sdc: 10 GiB, 10737418240 bytes, 20971520 sectors
.....
/dev/sdc1 * 2048 20971519 20969472 10G 83 Linux
Ich habe "fdisk / dev / sdb" verwendet, um eine Partitionstabelle zu erstellen, und dann "fdisk -l" angezeigt
Disk /dev/sdb: 10 GiB, 10737418240 bytes, 20971520 sectors
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: 0x5808f242
Device Boot Start End Sectors Size Id Type
/dev/sdb1 2048 20971519 20969472 10G 83 Linux
Gemäß dem Dokument habe ich die Festplatte formatiert
sudo mkfs.ext4 -F -E lazy_itable_init=0,lazy_journal_init=0,discard /dev/sdb1
Schließlich zeigte die Scheibe
ls -altr /dev/disk/by-uuid/
total 0
lrwxrwxrwx 1 root root 10 Nov 11 16:50 40206d63-43a8-4d1c-8588-581cefb022a3 -> ../../sda1
lrwxrwxrwx 1 root root 10 Nov 11 17:34 7f63bd57-6ccd-4cea-b0f0-9544870bf67a -> ../../sdc1
lrwxrwxrwx 1 root root 9 Nov 11 18:09 460a2e04-0f66-42d4-b9cc-8567aa6ee7b8 -> ../../sdb1