Ubuntu – Very slow write rate from ext4 to NTFS

ext4ntfsssd

I'm quite new with Ubuntu, I ve just installed Ubuntu 16.04.

I was "playing" with it and I discovered a strange thing.

I have a ssd with 3 partition, 1 in ext4 with Ubuntu, 1 in NTFS with windows10 and 1 with no operating system in NTFS.

I ve noticed that when I copy a file from NTFS to ext4 it goes very quickly, for example 2 GB are copied in 10-20 sec.
But when I try to copy something from ext4 to NTFS everything goes very slowly, like 100-200 kbps.

Is there a solution to fix it? Why is it happening? I'm really curious about that!

Thanks for your attention 🙂

Best Answer

I have founded a solution: I’ve changed the sync to async in this /etc/fstab line that I used to tell Ubuntu to auto-mount the disk:

UUID=<uuid> <pathtomount> <file system> uid=<userid>,gid=<groupid>,umask=0022,sync,auto,rw 0 0.

(Source for auto-mounting the disk when the system starts)

Related Question