daver898 Posted September 12, 2024 Posted September 12, 2024 Hi, I need to increase my /tmp size. i did some research and found the - "mount -o remount,size=12G /tmp" But it doesn't seem to change the size for me. Any suggestions? Regards Dave Quote
Solution Kilrah Posted September 12, 2024 Solution Posted September 12, 2024 (edited) Because /tmp is not itself a tmpfs, it's just a folder in the rootfs. Would have to "mount -o remount,size=12G /" But you should rather use /dev/shm which is a separate tmpfs (could resize it the same way) with the difference that if you fill it you won't make the system crash because of a full rootfs. Still need to be careful to leave enough RAM for the apps and system. Edited September 12, 2024 by Kilrah Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.