写入速度慢到ntfs

写入我的ntfs分区时,我的速度非常低(当读取时我的速度达到了最高速度):

589824 3% 60.20kB/s 0:04:06 

这个例子正在使用

 rsync --progress [File] [Destination] 

我在同一目录中制作文件的副本。

我正在使用fstab挂载我的ntfs分区:

 /dev/sda6 /mnt/data ntfs-3guid=1000,gid=11000,umask=0022,sync,auto,nosuid,rw,nouser 0 0 

我不确定这是否相关,但我最近在查看Ubuntu wiki上提供的Power Tweaking技巧,我相信这些情况可能是相关的。

Grub Conf:

 GRUB_BACKGROUND=/boot/grub/gbackground.jpg GRUB_SAVEDEFAULT=true GRUB_DEFAULT=0 

我认为导致问题的功率调整是ALPM 。

注意:我的写入速度与我的ntfs补丁完全没问题,直到昨天我开始摆弄功率调整时

我使用一个带有多个分区的驱动器,因此它不能是硬件错误,这也是因为我在Windows中的双启动可以正常速度访问驱动器。

这是您在fstab行中显示的sync选项。 当使用使用usbmount的外部USB驱动器时,这是一个常见问题。 从/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. # ############################################################################# 

因此,只需从fstab删除sync选项或将其更改为async 。 如果您是热插拔,请更改/etc/usbmount/usbmount.conf的以下行:

 MOUNTOPTIONS="sync,noexec,nodev,noatime,nodiratime" 

 MOUNTOPTIONS="noexec,nodev,noatime,nodiratime" 

在拔出电源之前,不要忘记安全地卸下驱动器。

曾经发生在我身上。 我编辑了fstab以在启动时自动挂载NTFS分区。 在编辑文件之前将文件恢复到了诀窍。