是什么导致mount.ntfs占用大量CPU?


16

我使用的是Ubuntu 14.04 64位。mount.ntfs使用较高的CPU--40%。我有Intel Core i5-3210M。为什么会这样呢?

lsblk

NAME   FSTYPE   SIZE MOUNTPOINT        LABEL
sda           465.8G                   
├─sda1 ntfs     300M                   Windows RE tools
├─sda2 vfat     100M /boot/efi         SYSTEM
├─sda3 ntfs     438M                   Windows
├─sda4 ntfs    97.7G                   
├─sda5 ext4    94.1G /                 
├─sda6 ntfs   263.3G /media/user/DATA1 DATA
├─sda7          128M                   
└─sda8 ntfs     9.5G                   Recovery
sr0            1024M

top

  PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND     
26199 root      20   0   14712   1940    684 R  45.5  0.0   3:07.80 mount.ntfs  
26268 user      20   0 1255660 385524  49108 S  15.3  4.8   1:01.41 firefox     
28549 root      20   0  483936 130680 109148 S  12.3  1.6  11:06.58 Xorg        
26250 user      20   0  538956  30212  19316 S   6.0  0.4   0:22.58 gnome-syst+ 
29140 user      20   0 1579488 237416  38440 S   5.3  2.9   5:56.58 compiz      
 8311 user      20   0 4833744 253740  25596 S   4.3  3.1   1:26.34 java        
31864 user      20   0  671040  22512  13420 S   1.3  0.3   0:07.73 gnome-term+ 
   10 root      20   0       0      0      0 S   0.3  0.0   0:13.72 rcuos/2

2
在终端中输入“ sudo lsof <path_to_NTFS_mount>”,以找出哪个应用程序使用ntfs.mount
Farimah 2015年

Answers:


4

您必须添加行以/etc/fstab自动挂载ntfs分区

/dev/sda6   /media/user/DATA1   ntfs    defaults,nls=utf-8,umask=007,gid=46   0   0

在以下内容中查看有关自动挂载ntfs的更多详细信息:
如何自动挂载NTFS分区?


重新安装操作系统-更好的答案?现在,我在自己的笔记本电脑上修复了CPU负载问题-只需在/ etc / fstab中添加行即可自动挂载ntfs分区
Oleksandr

那更好吗?
Oleksandr

是的,现在更好。
Videonauth

@Oleksandr,这是2014年的大声笑,我记得我在没有解决方案的情况下进行了google搜索,重新安装操作系统是我唯一的解决方案
aliarousyoucef

10
到底如何自动挂载会降低mount.nfs的CPU使用率?请解释。我不知道这是最佳答案。
史蒂文·林恩'18

2

更改NTFS分区的安装选项会将我正在使用的应用程序从无法使用100%mount.ntfs CPU更改为完全正常运行。要使用的关键之一是“ big_writes”,但我的完整列表是:

windows_names,norecover,big_writes,streams_interface=windows,inherit

您可以这样使用它:

mount -t ntfs -o windows_names,norecover,big_writes,streams_interface=windows,inherit /dev/disk/by-uuid/DISKUUID /mountpoint

选项的完整列表及其在ntfs-3g的Ubuntu手册上的含义:https : //manpages.ubuntu.com/manpages/eoan/man8/ntfs-3g.8.html


-1

对我而言,唯一的解决方案是重新安装OS。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.