为什么即使设置了权限,我仍无法写入外部 NTFS 硬盘?

为什么即使设置了权限,我仍无法写入外部 NTFS 硬盘?

在 Ubuntu 16.04 LTS 上配备 500GB 外置 WD 硬盘。

格式化为 NTFS 后,我无法使用图形文件资源管理器写入文件,并出现以下弹出错误:

复制文件弹出错误:

图像

我尝试了以下方法:

$ sudo apt-get purge ntfs-3g
$ sudo apt-get install ntfs-3g

ls -al /media这重新安装了 ntfs-3g 工具。很好,但我仍然无法执行任何操作。以下是和sudo fdisk -l的输出cat /etc/fstab

$ ls -al /media

drwxrwxrwx   1 kf   kf   4096 May 14 14:09 ntfs

$ sudo fdisk -l 

Disk /dev/sdc: 465.8 GiB, 500107862016 bytes, 976773168 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: FB6876F3-56D8-49CD-B0BB-55B07240A75B

Device      Start       End   Sectors   Size Type
/dev/sdc1      40    409639    409600   200M EFI System
/dev/sdc2  411648 976773134 976361487 465.6G Microsoft basic data

$ cat /etc/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>
/dev/mapper/ubuntu--vg-root /               ext4    errors=remount-ro 0       1
# /boot was on /dev/sda2 during installation
UUID=08fdc860-fb67-4527-bf63-5114d08f16f4 /boot           ext2    defaults        0       2
# /boot/efi was on /dev/sda1 during installation
UUID=8CA6-E334  /boot/efi       vfat    umask=0077      0       1
#/dev/mapper/ubuntu--vg-swap_1 none            swap    sw              0       0
/dev/mapper/cryptswap1 none swap sw 0 0
/dev/sdc2 /media/ntfs ntfs-3g locale=en_US.UTF-8,permissions 0 0

我已阅读了 AskUbuntu 上有关此问题的所有其他帖子,但没有任何帮助。我下一步该怎么做?

答案1

我认为您必须以读/写模式重新安装分区/磁盘。我新创建的分区之一也遇到了同样的问题。尝试

sudo mount -o remount,rw /PartitionID /MountPoint

输入正确的PartitionID和MountPoint。

答案2

经过多次尝试,我通过以下方式解决了该问题:

sudo mount -o remount,rw /PartitionID /MountPoint

你可以使用命令 找到分区 ID。IDsudo fdisk -l看起来像是某个随机数。MountPoint 是驱动器的位置。通常位于/media/user_name/。即使此后你无法写入,你也可能需要使用 chmod 更改写入权限sudo chmod u+w myfolder

答案3

我遇到了同样的问题,我已修复:

ntfsfix /dev/sdb1

sdb1用您的分区的 ID替换。

相关内容