Hacker News new | ask | show | jobs
by CRConrad 1614 days ago
> not quite as bad as Windows having two oddly named Program Files directories, but still

At least three, if you inclde "Roaming\Appdata" (or is it "Appdata\Roaming"?), which is also a program files directory nowadays.

As for Linux, yeah... Either stick with the Filesystem Hierarchy Standard, or -- if it's time to revolutionise the directory structure -- maybe something like what GoboLinux (et al?) are doing.

1 comments

On my Guix systems, I've gone full obstinate idiot:

- / is on tmpfs

- the OS is mounted on /gnu

- system data is mounted on /var (and /etc is populated from /var/etc)

- user data is mounted on /usr

This way, I can avoid the plethora of separate tmpfs filesystems on most distro's (at least /dev, /run, /tmp, /dev/shm).

But I'm not running any desktop systems on Guix right now, just service containers. I'm would expect there to be plenty of Linux desktop software that can't handle /usr being for user data.