Відповіді:
Якщо ваша файлова система підтримує розширення posix acl, то так, ви можете мати кілька груп. Більшість звичайних інструментів і програм Unix / Linux не показують вам більше, ніж користувач за замовчуванням: group: інші речі.
Використовуйте getfacl <file/dir>для отримання поточних налаштувань acl та setfaclїх встановлення.
$ getfacl .
# file: .
# owner: root
# group: src
user::rwx
group::r-x
mask::rwx
other::---
# only user root got write access and src group read/exec access
$setfacl -m g:root:rwx .
$setfacl -m g:staff:rwx .
# and now root and staff groups have full write access
$ getfacl .
# file: .
# owner: root
# group: src
user::rwx
group::r-x
group:root:rwx
group:staff:rwx
mask::rwx
other::---
Див. man mountПараметри кріплення
ext2:
acl|noacl
Support POSIX Access Control Lists (or not).
Дивіться man getfaclі man setfaclприклади аКЛи і опції.