写入 ntfs 速度慢

写入 ntfs 速度慢

当我写信给我的时候NTFS分区时我的速度非常低(但是读取时我的速度却达到最大速度):

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

此示例使用

rsync --progress [File] [Destination]

我正在同一目录中复制该文件。

我正在安装我的NTFS使用 fstab 进行分区:

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

我不确定这是否相关,但我最近正在查看功率调整Ubuntu wiki 上提供的提示,我相信这些情况可能相关。

Grub 会议:

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

我认为造成问题的电源调整是阿尔普

笔记:我对 ntfs 分区的写入速度一直很好,直到昨天我开始摆弄电源调整

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

答案1

这是sync您在命令行中显示的选项fstab。这是使用 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.                 #
#############################################################################

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

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

MOUNTOPTIONS="noexec,nodev,noatime,nodiratime"

并且,在拔下电源插头之前,请不要忘记安全地卸载驱动器。

答案2

我曾经遇到过这种情况。我编辑了文件系统在启动时自动挂载 NTFS 分区。将文件恢复到编辑之前的状态即可。

相关内容