我有一個天藍色的 blob(.vhd 磁碟),它是透過拍攝即時磁碟快照創建的 Windows 資料磁碟的副本,然後將該快照複製到臨時 blob,這是我附加到 Linux 機器的 blob 。
在 Windows 中,該磁碟是基本磁碟,有一個標記為 SQLVMDATA1 的 200GB 分割區,其餘部分未分配。
DISKPART> list disk
Disk ### Status Size Free Dyn Gpt
-------- ------------- ------- ------- --- ---
Disk 0 Online 127 GB 66 GB
Disk 1 Online 16 GB 0 B
Disk 3 Online 1022 GB 821 GB *
DISKPART> select disk 3
Disk 3 is now the selected disk.
DISKPART> list partition
Partition ### Type Size Offset
------------- ---------------- ------- -------
Partition 1 Reserved 128 MB 17 KB
Partition 2 Primary 200 GB 129 MB
當連接到 Linux(CentOS Linux 版本 7.6.1810)時,它顯示為 /dev/sdc (sdc1 scd2)
(parted) print
Model: Msft Virtual Disk (scsi)
Disk /dev/sdc: 1098GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 17.4kB 134MB 134MB Microsoft reserved partition msftres
2 135MB 1098GB 1098GB SQLVMStoragePool1
首先,這些分割區與Windows中列出的分割區不符。
任何掛載分割區 2 的嘗試都會報告
[root@rsa-oz1 boot]# mount -t ntfs-3g /dev/sdc2 /mnt/disk
NTFS signature is missing.
Failed to mount '/dev/sdc2': Invalid argument
The device '/dev/sdc2' doesn't seem to have a valid NTFS.
Maybe the wrong device is used? Or the whole disk instead of a
partition (e.g. /dev/sda, not /dev/sda1)? Or the other way around?
駭報告
[root@rsa-oz1 boot]# blkid /dev/sdc
/dev/sdc: PTTYPE="gpt"
[root@rsa-oz1 boot]# blkid /dev/sdc1
/dev/sdc1: PARTLABEL="Microsoft reserved partition" PARTUUID="a82bce67-815b-11e9-a815-002248005d03"
[root@rsa-oz1 boot]# blkid /dev/sdc2
/dev/sdc2: PARTLABEL="SQLVMStoragePool1" PARTUUID="a82bce68-815b-11e9-a815-002248005d03"
我認為 Windows 對 /dev/sdc2 進行了子分割區 問題是如何在 Linux 上安裝它們?