SagXD@lemm.ee to Linux@lemmy.ml · edit-22 months agoLinux Directory Structure - FHSlemm.eeimagemessage-square202fedilinkarrow-up11.29Karrow-down159
arrow-up11.24Karrow-down1imageLinux Directory Structure - FHSlemm.eeSagXD@lemm.ee to Linux@lemmy.ml · edit-22 months agomessage-square202fedilink
minus-squarebaseless_discourse@mander.xyzlinkfedilinkarrow-up4·edit-22 months ago/run is a temporary fs, so if the mount, filesystem or even the entire system crashed, all the mounted data will be cleaned up after a reboot. On the contrary, if the mount crashed, it might leave a folder or data on /media, making subsequent mount problematic. Here is a well-written comment about the rationale behind this mount point: https://www.reddit.com/r/linuxquestions/comments/tzo984/comment/i40e2za/
minus-squarecaseyweederman@lemmy.calinkfedilinkarrow-up2·2 months agoProbably so that you don’t accidentally write to a directory by mistake when it isn’t mounted, and then lose access when you mount something over it, all while services are looking for files that are only there sometimes.
minus-squareToribor@corndog.sociallinkfedilinkEnglisharrow-up2·2 months agoI’ve had exactly this happen to me. It was my own fault but it took a bit of work figure out.
What’s the reason?
/run is a temporary fs, so if the mount, filesystem or even the entire system crashed, all the mounted data will be cleaned up after a reboot.
On the contrary, if the mount crashed, it might leave a folder or data on /media, making subsequent mount problematic.
Here is a well-written comment about the rationale behind this mount point: https://www.reddit.com/r/linuxquestions/comments/tzo984/comment/i40e2za/
Probably so that you don’t accidentally write to a directory by mistake when it isn’t mounted, and then lose access when you mount something over it, all while services are looking for files that are only there sometimes.
I’ve had exactly this happen to me. It was my own fault but it took a bit of work figure out.