Slow write speeds to ntfs
Solution 1:
It's the sync
option that you show in your fstab
line that's doing it. This is a common problem when using an external USB drive that uses usbmount. From /etc/usbmount/usbmount.conf
:
#############################################################################
# WARNING! #
# #
# The "sync" option may not be a good choice to use with flash drives, as #
# it forces a greater amount of writing operating on the drive. This makes #
# the writing speed considerably lower and also leads to a faster wear out #
# of the disk. #
# #
# If you omit it, don't forget to use the command "sync" to synchronize the #
# data on your disk before removing the drive or you may experience data #
# loss. #
# #
# It is highly recommended that you use the pumount command (as a regular #
# user) before unplugging the device. It makes calling the "sync" command #
# and mounting with the sync option unnecessary---this is similar to other #
# operating system's "safely disconnect the device" option. #
#############################################################################
So just remove the sync
option from fstab
or change it to async
. If you are hotplugging change the following line in that /etc/usbmount/usbmount.conf
from:
MOUNTOPTIONS="sync,noexec,nodev,noatime,nodiratime"
to
MOUNTOPTIONS="noexec,nodev,noatime,nodiratime"
And don't forget to safely unmount your drive before unplugging.