【筆記】Linux 暫時增加 /tmp 空間

安裝程式時,出現「裝置上已無多餘空間」,用 df -h 查,是 /tmp 滿了。

我的 /tmp 非獨立磁區,是跟 / 同磁區,且 / 還有空間,所以可以透過重新 mount 的指令來暫時增加 /tmp 的空間。

df -h /tmp
#查詢 /tmp 佔用空間。

sudo mount -o remount,size=15G /tmp/
#將 /tmp 大小改成 15G。

df -h /tmp
#確認 /tmp 的佔用 % 是否改變。

 

若要清空 /tmp,可以執行以下指令:

sudo rm -r /tmp/*

 

【參考連結】

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.