Windows 分区未显示在虚拟 Ubuntu 16.0 中

Windows 分区未显示在虚拟 Ubuntu 16.0 中

我已经在 Windows 7 机器上安装了虚拟 Ubuntu 16.0。Linux 系统未显示 Windows 分区。

gparted分区软件中显示的是Windows分区。

以下是我的文件系统详细信息。


sudo parted -l
Model: ATA VBOX HARDDISK (scsi)
Disk /dev/sda: 54.3GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type      File system     Flags
 1      1049kB  53.2GB  53.2GB  primary   ext4            boot
 2      53.2GB  54.3GB  1072MB  extended
 5      53.2GB  54.3GB  1072MB  logical   linux-swap(v1)


hitesh@hitesh-VirtualBox:~$ sudo fdisk -lu
Disk /dev/sda: 50.6 GiB, 54268166144 bytes, 105992512 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xf75dafc7

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1  *         2048 103897087 103895040 49.6G 83 Linux
/dev/sda2       103899134 105992191   2093058 1022M  5 Extended
/dev/sda5       103899136 105992191   2093056 1022M 82 Linux swap / Solaris

如何在 Linux 中显示 Windows 分区?

答案1

您正在使用虚拟盒(如该行所示:)Model: ATA VBOX HARDDISK (scsi)。虚拟机将主机(您的情况是 Windows 7)与客户机(您的情况是 Ubuntu)隔离;这意味着您无法从 Ubuntu 看到 Windows 7 的硬盘。

如果您想在这些机器之间共享一些文件,您可以使用 VirtualBox 共享系统或其他基于网络的文件共享,如:SMB、FTP、SSHFS……

相关内容