如何挂载只读 NTFS 分区(未安装 Ubuntu?!)

如何挂载只读 NTFS 分区(未安装 Ubuntu?!)

我的笔记本电脑运行的是 Windows 10,现在无法启动了。所以我想通过 USB 启动 Ubuntu 16.04.1 LTS 来保存我的所有文件,然后再送去维修。

但是,当我尝试在 Nautilus 中访问我的驱动器时,它会出现一个冗长的对话框:

Unable to access “255 GB Volume”

Error mounting /dev/sda2 at /media/ubuntu/CAEED374EED356F3: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=999,gid=999" "/dev/sda2" "/media/ubuntu/CAEED374EED356F3"' exited with non-zero exit status 14: The disk contains an unclean file system (0, 0).
Metadata kept in Windows cache, refused to mount.
Failed to mount '/dev/sda2': Operation not permitted
The NTFS partition is in an unsafe state. Please resume and shutdown
Windows fully (no hibernation or fast restarting), or mount the volume
read-only with the 'ro' mount option.

我如何将该驱动器安装为只读?由于磁盘空间不足,我无法安装 Ubuntu,除非删除我真正想要保存的内容。

如果能提供 nautilus 或其他软件的图形解决方案,我将不胜感激。否则,您能否告诉我需要在终端中输入什么内容?

亲切的问候!

马库斯

答案1

/mnt您可以在终端中通过以下命令将分区挂载到例如:

sudo mount -o ro /dev/sda2 /mnt

您将在目录中看到分区的内容/mnt,并且可以将其复制到某处。

相关内容