zlacker

[parent] [thread] 1 comments
1. Starle+(OP)[view] [source] 2026-01-04 18:10:52
> So what did they do? Move everything from /usr to / and drop the whole /usr legacy? Noooo, that would be too simple.

It's a lot simpler to merge them in a directory that can be mounted across multiple machines than have four separate mountpoints.

replies(1): >>kees99+Z1
2. kees99+Z1[view] [source] 2026-01-04 18:22:17
>>Starle+(OP)
Mount-points were key to early history of the split. Nowadays it's more about not breaking shebangs.

Nearly every shell script starts with "#!/bin/sh", so you can't drop /bin. Similarly, nearly every python script starts with "#!/usr/bin/env python", so you can't drop /usr/bin.

Hence symlink.

[go to top]