Systemd

如何手動增加 /tmp 文件夾大小

  • October 11, 2020

我在 Fedora 26 中的**/tmp**文件夾上沒有可用空間 。這會導致幾個問題。

文件夾 /tmp 佔用所有空閒 RAM:

$ df -h /tmp
Filesystem      Size  Used Avail Use% Mounted on
tmpfs           3.9G   3.9G  12k 100% /tmp
$

那麼, 如何在不添加更多 RAM 或從中刪除文件的情況下手動增加此文件夾的大小以獲得更多可用空間?

我的問題與thisthis類似,但有所不同:

  • 在我的問題中,我需要在達到最大大小時增加文件夾的大小

提前致謝。

mount -o remount,size=5G /tmp/

引用自:https://unix.stackexchange.com/questions/400138