Linux – The distinction between things in /bin and things in /usr/bin

linuxposixshellunix

What is it? …

Best Answer

Wikipedia has a decent explanation. From that article:

  • /bin: "Essential command binaries that need to be available in single user mode; for all users, e.g., cat, ls, cp."
  • /usr/bin: "Non-essential command binaries (not needed in single user mode); for all users."
Related Question