Yeah, Linux was built as a multi-user system, so user and group permissions have always been a core aspect of it. The "password locked admin account" is just the root
user, although you should maybe leave that as a "failsafe" account and create a separate user with sudo
er permissions. Every file and folder in Linux has an owner and read/write/execute permissions for the owner, members of its group, and others. By default, users are limited to their own home folder (/home/username
, where folders like Documents are stored) and a handful of world-writable locations (like /tmp
)
If you need more specific permissions, ACLs are also available. Or SELinux.
The biggest difference regarding distribution choice is that some distros ship with SELinux enabled, while most don't. For everything else there's not much difference, so maybe start with Debian for its community support/resources?