什么东西占用了我这么大一部分内存?

什么东西占用了我这么大一部分内存?

我正在为 plex、存储和一些虚拟机设置家庭服务器。我已经加载并运行了所有东西,并检查了剩余的 RAM 以启动一些虚拟机,发现我使用了超过一半的 RAM,甚至还没有启动虚拟机。我运行了“sudo htop”以查看是否能找出正在使用它的内容,但它没有显示太多信息。我使用 Linux 的时间不长,但我认为它的资源非常少。还有其他应用程序可以用来找出正在使用 RAM 的内容吗?

    bob@ducktape:~$ uname -a
    Linux ducktape 4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

    bob@ducktape:~$ free -m
                  total        used        free      shared  buff/cache   available
    Mem:          48291       26613       18648          28        3029       20595
    Swap:             0           0           0

    bob@ducktape:~$ ps aux --sort -rss | head -n 5
    USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
    plex     19720  9.3  1.2 1177412 597384 ?      Sl   00:11  71:45 /usr/lib/plexmediaserver/Plex Media Server
    plex     19789  0.0  0.1 344168 92808 ?        Sl   00:11   0:28 /usr/lib/plexmediaserver/Plex DLNA Server
    plex     19748  0.1  0.1 1857400 66116 ?       SNl  00:11   0:46 Plex Plug-in [com.plexapp.system] /usr/lib/plexmediaserver/Resources/Plug-ins-f54242b6b/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.10.1.4602-f54242b6b /usr/lib/plexmediaserver/Resources/Plug-ins-f54242b6b/System.bundle
    plex     19822  0.0  0.0 955492 47048 ?        Sl   00:11   0:12 Plex Plug-in [com.plexapp.plugins.WebTools] /usr/lib/plexmediaserver/Resources/Plug-ins-f54242b6b/Framework.bundle/Contents/Resources/Versions/2/Python/bootstrap.py --server-version 1.10.1.4602-f54242b6b /var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Plug-ins/WebTools.bundle

bob@ducktape:~$ free --si -h
              total        used        free      shared  buff/cache   available
Mem:            49G         27G         19G         29M        3.1G         21G
Swap:            0B          0B          0B

htop 输出

相关内容