我很困惑我的 /tmp 使用 tmpfs 是否尊重size
我给它的参数/etc/fstab
:
我的 fstab 条目现在显示为:
root_pool/var/tmp /tmp /var/tmp zfs rw,nodev,nosuid 0 0
tmpfs /tmp tmpfs rw,nodev,nosuid,noexec,nr_inodes=5k,size=2G,mode=1777 0 0
tmpfs /dev/shm tmpfs defaults,nodev,nosuid,nr_inodes=5k,mode=700,size=4G 0 0
但是根据 du 的说法,它使用了我一半的内存(我理解这是默认值)而不是我打算分配给它的大小。
~ df /tmp
Filesystem 1K-blocks Used Available Use% Mounted on
tmpfs 65921428 0 65921428 0% /tmp
那么size
参数根本没有任何影响吗?我正在使用 Ubuntu 20.04
编辑我可以手动安装它
sudo mount -oremount,size=4G /tmp
当我这样做时,这/tmp
是预期的 20.04 GB。
编辑:系统状态:
● tmp.mount - Temporary Directory (/tmp)
Loaded: loaded (/etc/systemd/system/tmp.mount; enabled; vendor preset: enabled)
Active: active (mounted) since Wed 2020-06-17 13:30:35 EDT; 8min ago
Where: /tmp
What: tmpfs
Docs: https://systemd.io/TEMPORARY_DIRECTORIES
man:file-hierarchy(7)
https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Tasks: 0 (limit: 154317)
Memory: 76.0K
CGroup: /system.slice/tmp.mount
Jun 17 13:30:35 virtland systemd[1]: Mounting Temporary Directory (/tmp)...
Jun 17 13:30:35 virtland systemd[1]: Mounted Temporary Directory (/tmp).
和journalctl -u tmp.mount
-- Reboot --
Jun 17 13:27:50 virtland systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting an>
Jun 17 13:27:50 virtland systemd[1]: Mounting Temporary Directory (/tmp)...
Jun 17 13:27:50 virtland systemd[1]: Mounted Temporary Directory (/tmp).
Jun 17 13:29:43 virtland systemd[1]: Unmounting Temporary Directory (/tmp)...
Jun 17 13:29:43 virtland systemd[1]: tmp.mount: Succeeded.
Jun 17 13:29:43 virtland systemd[1]: Unmounted Temporary Directory (/tmp).
-- Reboot --
Jun 17 13:30:35 virtland systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting an>
Jun 17 13:30:35 virtland systemd[1]: Mounting Temporary Directory (/tmp)...
Jun 17 13:30:35 virtland systemd[1]: Mounted Temporary Directory (/tmp).
Edit2:设置 tmpfs 的大小/dev/shm
按预期工作:
# in fstab
tmpfs /dev/shm tmpfs defaults,nodev,nosuid,nr_inodes=5k,mode=700,size=4G 0 0
tmpfs 13184288 2328 13181960 1% /run
tmpfs 4194304 41056 4153248 1% /dev/shm
tmpfs 5120 4 5116 1% /run/lock
tmpfs 65921432 0 65921432 0% /sys/fs/cgroup
tmpfs 65921432 0 65921432 0% /tmp
tmpfs 13184284 8 13184276 1% /run/user/1000
此外,尽管许多安全指南推荐使用 noexec 选项,但似乎存在问题,因为某些程序(包括 apt)需要从 /tmp 执行。我知道这可以解决,但我不想找出每个需要例外的程序。