如何在 Ubuntu 18.04 的挂载分区上启用 NTFS 写入支持?

Geo*_*eRF 10 partitioning dual-boot mount ntfs 18.04

我能够在 Ubuntu 18.04 LTS 中使用磁盘应用程序自动挂载 ntfs 驱动器。但是,我无法写入 NTFS 分区。

以下是根据磁盘应用程序的我的 ntfs 分区。

  • /dev/sda3 (/dev/disk/by-uuid/162451E92451CC7D)
  • /dev/sda4 (/dev/disk/by-uuid/B696F3C596F38461)

是否有基于 GUI 的解决方案来启用 NTFS 写入支持?

为什么默认不启用?

我的 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>
# / was on /dev/sda7 during installation
UUID=016b0523-a020-4f98-b7de-fffdb7b39b0d /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
UUID=3026-A145  /boot/efi       vfat    umask=0077      0       1
# /home was on /dev/sda9 during installation
UUID=689f530e-afea-43e5-b55e-6743633d2fe9 /home           ext4    defaults        0       2
# swap was on /dev/sda8 during installation
UUID=e9eb9e5d-6f45-4054-ad01-94a8b8c9df45 none            swap    sw              0       0
/dev/disk/by-uuid/162451E92451CC7D /mnt/162451E92451CC7D auto nosuid,nodev,nofail,x-gvfs-show 0 0
/dev/disk/by-uuid/B696F3C596F38461 /mnt/B696F3C596F38461 auto nosuid,nodev,nofail,x-gvfs-show 0 0
Run Code Online (Sandbox Code Playgroud)

编辑

按照@mook765 的要求添加挂载命令

~$ mount | grep sda4
/dev/sda4 on /mnt/162451E92451CC7D type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)
~$ mount | grep sda3
/dev/sda3 on /mnt/B696F3C596F38461 type fuseblk (ro,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other,blksize=4096,x-gvfs-show)
Run Code Online (Sandbox Code Playgroud)

kis*_*hea 20

以读写模式挂载分区:

运行ntfsfix /dev/sdaX以解决问题。然后重新挂载分区。

  • 总是从 Windows 重新启动。不要关机。这将释放 windows ntfs 卷 (6认同)