我正在尝试运行 Docker,但我的 Ubuntu 16.04 需要更多内存
free -m
total used free shared buff/cache available
Mem: 7914 4024 3072 83 817 3448
Swap: 8127 14 8113
当我运行 docker 时
Setting advertised host to 127.0.0.1.
Operating system RAM available is 3344 MiB, which is less than the lowest
recommended of 5120 MiB. Your system performance may be seriously impacted.
我应该怎么做才能获得更多内存?这可能吗?
答案1
使用以下命令确定前 10 个内存消耗资源。以便您可以相应地麻烦
ps axo %mem,command,pid| sort -nr | head
要删除缓存,请使用以下命令
sync;echo 1 > /proc/sys/vm/drop_caches