增加 临时增大 tmp 空间方法.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-12-24 13:47:40 +08:00
parent 1ad38b845e
commit 443ee9a98a
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# 临时增大 tmp 空间
Linux tmp 空间主要在 /tmp 目录下,很多程序会使用到该空间。这个临时空间一般会被分配一个固定值,可用:
```bash
df -h
```
查看所分配的空间大小和使用情况。
有的程序会大量占用该空间,导致临时空间被 100% 消耗,程序无法继续执行,此时可使用:
```bash
mount -o remount,size=15G /tmp
```
临时增大 tmp 空间。或修改 /etc/fstab 文件:
```ini
# /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
tmpfs /tmp tmpfs defaults,size=15G,noatime,mode=1777 0 0
```
在 option 部分增加 size=15G 字段,来永久增大 tmp 空间。