0

It appears you can put all you need in /bin so why do we bother with the /usr/bin directory?

alk
  • 69,737
  • 10
  • 105
  • 255
Milktrader
  • 9,278
  • 12
  • 51
  • 69

1 Answers1

1

/bin is supposed to reside on the root filesystem, whereas /usr may be an alternate filesystem - even network mounted (multiple boxes sharing the same /usr).

This means that any essential basic utilities you need to bring up the system and mount filesystems, including troubleshooting, should live in /bin. Everything non-essential can go in /usr.

caf
  • 233,326
  • 40
  • 323
  • 462