I am using a BeagleBone board with Linux.
When i type command "df -h" , I see tmpfs is mounted a few times.
Does this mean that all these entries get mounted at the same place, or at a different part of the tmpfs?
It brings me to another thing I don't quite understand. Where is this tmpfs file system actually created in the first place? I guess it happens when Linux boots. Should I be able to find a script which creates this filesystem ?
tmpfs 242.4M 0 242.4M 0% /dev/shm
tmpfs 242.4M 8.3M 234.2M 3% /run
tmpfs 242.4M 0 242.4M 0% /sys/fs/cgroup
tmpfs 242.4M 36.0K 242.4M 0% /tmp
tmpfs 242.4M 16.0K 242.4M 0% /var/volatile
tmpfs 242.4M 16.0K 242.4M 0% /var/lib
df -h
? It helps everyone identify what each column means. – Gabriel Staples Oct 20 '21 at 14:27df -h
, here are the column headings of the above output:Filesystem Size Used Avail Use% Mounted on
. – Gabriel Staples Oct 20 '21 at 14:28