I have installed on my computer both Ubuntu 13.10
and Windows 8
and lately noticed that while a large file is copied with 5-6 MB per second on Windows 8
its transferred with up to 80 MB per second on the Ubuntu 13.10
.
What I am doing is downloading movies, copping them on a USB
stick and watch them on my TV. So, because the speed on Ubuntu
is better, a prefer to do the downloading and copying part using it.
The issue is so far, I have not successfully copy anything. I am using three different USB
sticks formatted as NTFS
and all copy operations are falling.
Firstly, the files are transferred but when I eject/inject the USB
again, I get the following error:
Error mounting /dev/sdb1 at /media/gotqn/Joro: Command-line `mount -t "ntfs" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,dmask=0077,fmask=0177" "/dev/sdb1" "/media/gotqn/Joro"' exited with non-zero exit status 13: $MFTMirr does not match $MFT (record 0). Failed to mount '/dev/sdb1': Input/output error NTFS is either inconsistent, or there is a hardware fault, or it's a SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows then reboot into Windows twice. The usage of the /f parameter is very important! If the device is a SoftRAID/FakeRAID then first activate it and mount a different device under the /dev/mapper/ directory, (e.g. /dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation for more details.
I have firstly thought that there might be something with the USB
sticks themselves, so I have formatted them using gparted
to NTFS
again but nothing changes.
When I formatted the sticks on Windows 8
and copied the files, everything is OK.
How to fix this?
USB
since the system tells me the files are copied (but they are not). – gotqn Jan 19 '14 at 19:01flush
option, but your NTFS is not. Just tried an NTFS external HDD and it is indeed not automounted withflush
. So I think you just have to format your drives to FAT32. Anyway FAT32 is the normal option for pendrives, not even Microsoft recommends NTFS for pendrives/memory-cards. (Maybe you are limited by the FAT32 filesystem capabilities (e.g. max file size) and that is why you need NTFS? ) Or maybe you can tweakudisks
to automount your drives withflush
. – falconer Jan 19 '14 at 19:43