增加我的 /tmp 文件夹的大小

增加我的 /tmp 文件夹的大小

如何增加 /tmp 文件夹的大小?Jenkins 为我的从属节点上的 /tmp 目录提供了“磁盘空间太低错误”

以下是我为增加分区大小所采取的措施:

运行以下命令:

dd if=/dev/zero of=/usr/tmp-dir bs=1024M count=2
mke2fs -j /usr/tmp-dir
mount -t ext3 -o loop /usr/tmp-dir /tmp

将此行添加到我的 /etc/fstab 文件中

/usr/tmp-dir /tmp ext3 defaults,loop 0 0

然后

chmod 1777 /tmp
chown root.root /tmp

我走在正确的道路上吗?

答案1

在 /etc/fstab 中,您应该看到一行tmpfs 带有size=参数的行。将后面的数字更改=为合适的大小

相关内容