When writing to my ntfs partition I am getting very low speeds( When reading however I'm getting my maximum speeds):
589824 3% 60.20kB/s 0:04:06
This example is using
rsync --progress [File] [Destination]
Where I am making a copy of the file in the same directory.
I am mounting my ntfs partition using fstab:
/dev/sda6 /mnt/data ntfs-3guid=1000,gid=11000,umask=0022,sync,auto,nosuid,rw,nouser 0 0
I am not sure if this is relevant but I was recently looking at the Power Tweaking tips provided on the Ubuntu wiki and I believe that these situations may correlate.
Grub Conf:
GRUB_BACKGROUND=/boot/grub/gbackground.jpg
GRUB_SAVEDEFAULT=true
GRUB_DEFAULT=0
The power tweak that I believe is causing the problem is the ALPM.
Note: My write speeds to my ntfs patition were absolutely fine until about yesterday when I started fiddling with the power tweak(s)
I am using one drive with multiple partitions, so it cannot be a hardware error, this is also because My dual boot in windows can access the drive at normal speeds.
Best Answer
It's the
sync
option that you show in yourfstab
line that's doing it. This is a common problem when using an external USB drive that uses usbmount. From/etc/usbmount/usbmount.conf
:So just remove the
sync
option fromfstab
or change it toasync
. If you are hotplugging change the following line in that/etc/usbmount/usbmount.conf
from:to
And don't forget to safely unmount your drive before unplugging.