I’ve seen a lot of self-hosted software wanting to store their data in /opt, is there any reason why?

      • atzanteol@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        4 months ago

        I was wondering about that too… According to the spec:

        /home is a fairly standard concept, but it is clearly a site-specific filesystem. The setup will differ from host to host. Therefore, no program should assume any specific location for a home directory, rather it should query for it.

        Sometimes home directories are in other locations. My University used to have different mount points for different graduating classes on our Unix servers. And I use “/home2” for one of my servers for… reasons.

        Though I’m not sure that qualifies as “deprecated”? I get the “non-standard” bit though.

        • holgersson@lemm.ee
          link
          fedilink
          arrow-up
          1
          ·
          4 months ago

          You also have to consider that roots homedir is in /root and not home, so if you’d just assume it’s /home/$USER you’d get in trouble when your programm is run or compiled as root.