启动 Ubuntu 11.10 时安装 ntfs 分区时出错-只能以 root 身份安装和访问

启动 Ubuntu 11.10 时安装 ntfs 分区时出错-只能以 root 身份安装和访问

我在启动时收到错误“将分区挂载到 /media/Date 时出错,请按 S 跳过挂载此分区或按 M 手动挂载此分区”。

错误发生后,我没有发现 fstab 文件中有任何行发生变化。错误发生后,我已将“/dev/sda5”更改为分区的 UUID,但这没有帮助。fstab 文件现在如下所示:

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options> <dump>  <pass>
proc                                       /proc  proc     nodev,noexec,nosuid  0  0
# / was on /dev/sda6 during installation
UUID=2956fd81-0373-4d3d-8fd1-991f2c68b2f3  /      ext4     errors=remount-ro    0  1
# swap was on /dev/sda2 during installation
UUID=265490d1-48c4-40a1-8ddd-df37a44a6ff2  none   swap     sw                   0  0
UUID=0BC8605C581B81ED /media/Date  ntfs-3g  quiet,defaults,rw    0  0

当我尝试通过单击 nautilus 中的分区来挂载它时,出现错误:“错误挂载:挂载退出,退出代码为 1:辅助程序失败:挂载:只有 root 才能在 /media/Date 上挂载 /dev/sda5”

它可以通过 gparted 安装,但我只能以 root 身份访问它。

答案1

您可以通过安装 ntfs-3g 来解决此问题

在终端中输入:

sudo apt-get install ntfs-3g

然后重新启动。

答案2

此问题源自 Windows。由于 NTFS 驱动器中的文件碎片,它无法授予访问权限。要找到解决方案,在尝试了所有在线提供的方法后,请执行以下操作:

  1. 重新启动系统并启动 Windows 操作系统。

  2. 转到已分区的驱动器并对其进行碎片整理。

  3. 重新启动系统并启动到 Ubuntu。

**这肯定会解决重新启动系统解决方案失败、编辑 fslab 失败、运行 ntfs-config 失败和 gparted 失败后的问题。

答案3

你能尝试改变吗UUID=0BC8605C581B81ED /media/Date ntfs-3g quiet,defaults,rw 0 0

UUID=0BC8605C581B81ED /media/Date ntfs-3g defaults,uid=1000 0 0

如果它有效请告诉我...

答案4

好吧,两个应用程序可以帮助您完全配置您的 ntfs 驱动器。

第一、Ntfs 配置工具

使用安装

sudo apt-get 安装 ntfs-config

它将帮助您制作只读或可写的 ntfs 驱动器...

第二个是存储设备管理器

sudo apt-get 安装 pysdm

这可以帮助您以图形方式管理 fstab 文件......意味着自动挂载选项可用。

RJK 祝一切顺利

相关内容