我有一台 ThinkPad X270,带有双启动 win10 / Ubuntu 16.04。以下是输出fdisk -l
:
Disk /dev/loop0: 86,6 MiB, 90828800 bytes, 177400 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
Disk /dev/loop1: 86,6 MiB, 90812416 bytes, 177368 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
Disk /dev/loop2: 162,6 MiB, 170479616 bytes, 332968 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
Disk /dev/loop3: 162,1 MiB, 169943040 bytes, 331920 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
Disk /dev/loop4: 159,5 MiB, 167231488 bytes, 326624 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
Disk /dev/loop5: 86,6 MiB, 90759168 bytes, 177264 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
Disk /dev/nvme0n1: 477 GiB, 512110190592 bytes, 1000215216 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: gpt
Disk identifier: DAC31813-E9D7-4C23-A2BF-993BFA742FA8
Device Start End Sectors Size Type
/dev/nvme0n1p1 2048 534527 532480 260M EFI System
/dev/nvme0n1p2 534528 567295 32768 16M Microsoft reserved
/dev/nvme0n1p3 567296 547606527 547039232 260,9G Microsoft basic data
/dev/nvme0n1p4 998166528 1000214527 2048000 1000M Windows recovery environmen
/dev/nvme0n1p5 547606528 965101567 417495040 199,1G Linux filesystem
/dev/nvme0n1p6 965101568 998166527 33064960 15,8G Linux swap
Partition table entries are not in disk order.
所以我怀疑我的 Windows 分区是/dev/nvme0n1p3
,正确吗?
现在,当我尝试使用以下命令挂载该分区时,出现了以下问题:
sudo mount /dev/nvme0n1p3 /media/myusername/windows
我收到以下错误消息:
mount: wrong fs type, bad option, bad superblock on /dev/nvme0n1p3,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so.
您知道问题可能是什么吗?dmesg | tail
似乎不包含任何有用的提示。
编辑
此外,根据@david-foerster 的要求,以下是sudo lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
loop1 squashf /snap/spotify
loop4 squashf /snap/spotify
loop2 squashf /snap/core/44
loop0 squashf /snap/core/45
nvme0n1
├─nvme0n1p5 ext4 b82c7e09-ca99-4d36-a414-e27dad39ee2a /
├─nvme0n1p3
├─nvme0n1p1 vfat SYSTEM E274-CF83 /boot/efi
├─nvme0n1p6 swap 6fea09e6-54ab-49b5-a792-24c14a3fc1af [SWAP]
├─nvme0n1p4 ntfs WinRE_DRV 3C3477E53477A116
└─nvme0n1p2
loop5 squashf /snap/spotify
loop3 squashf /snap/core/46
答案1
尝试这个:
sudo mount -t ntfs /dev/nvme0n1p3 /media/myusername/windows
系统无法识别文件系统类型。因此您必须将其输入为ntfs
。如果无法以读/写模式挂载 Windows 分区,您必须禁用快速启动从 Windows 开始。您可以关注本指南禁用它。如果你需要一种 GUI 方式来挂载并在启动时挂载参见这个问题的第一个答案。如果仍然不起作用,您的 PBR(主引导扇区)可能已损坏。尝试chkdsk /f
从 Windows 运行并尝试再次安装它。
编辑:您的分区名称看起来不像,sdaxx
因为您的机器可能使用 SSD 而不是 HDD 硬盘。
答案2
是的,/dev/nvme0n1p3
似乎是主 Windows 分区
名为 (nvme...) 的磁盘连接到 pci-express 总线。您的笔记本电脑似乎使用 pci ssd 驱动器运行。
Nautilus(Ubuntu 文件浏览器)应该能够安装 Windows 驱动器。
(好的,您已禁用 Windows 快速启动功能)
chkdsk
您是否尝试过(使用 Win10)在 Windows 驱动器上运行?
我遇到了同样的问题,这个问题解决了
答案3
您无需记住 FS 类型,可以auto
在挂载时使用以下参数:
mount -t auto /dev/nvme0n1p3 /media/myusername/windows
请记住,为了挂载您必须先创建目录,即:
mkdir -p /media/myusername/windows
-p
或开关--parents
的意思是:如果存在则无错误,根据需要创建父目录
答案4
我也遇到过这个问题。这个帮我解决了。原来是因为我的 Windows 分区是 BitLocker 加密的。 在 Ubuntu 14.04 LTS 上使用 (Windows) BitLocker 加密驱动器