From d036c7a0862ddf9d094b512ee2b28ae0a6b04a85 Mon Sep 17 00:00:00 2001 From: Tom Mortensen Date: Mon, 26 Feb 2024 09:24:11 -0800 Subject: [PATCH] Increased /run tmpfs size limit from 32M to 128M --- etc/rc.d/rc.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/rc.d/rc.S b/etc/rc.d/rc.S index 3fce47e9b..731361a6c 100755 --- a/etc/rc.d/rc.S +++ b/etc/rc.d/rc.S @@ -50,7 +50,7 @@ fi # initrd has already done so): if [[ -d /run ]]; then if ! /bin/grep -wq "tmpfs /run tmpfs" /proc/mounts; then - /sbin/mount -v -n -t tmpfs tmpfs /run -o mode=0755,size=32M,nodev,nosuid,noexec + /sbin/mount -v -n -t tmpfs tmpfs /run -o mode=0755,size=128M,nodev,nosuid,noexec fi fi