2023-06-27, 08:10 PM
(This post was last modified: 2023-06-27, 08:13 PM by TheTrueLinuxDev. Edited 2 times in total.)
Well if you run the following command:
you may receive an output as thus:
/dev/shm is always configured to be tmpfs whereas /tmp varies on different linux distro and /var/tmp should not be tmpfs since the temporary files in /var/tmp should persist between reboots.
df /dev/shm
you may receive an output as thus:
Filesystem 1K-blocks Used Available Use% Mounted on
tmpfs 65882212 78864 65803348 1% /dev/shm
/dev/shm is always configured to be tmpfs whereas /tmp varies on different linux distro and /var/tmp should not be tmpfs since the temporary files in /var/tmp should persist between reboots.