The groups 'mail' and 'wheel' are not found on SUSE Linux Enterprise Server for SAP Applications 15.

Hello,

I have 2 questions about ‘SUSE Linux Enterprise Server for SAP Applications 15 SP1’.

I made a server on AWS, and logged in it.
I added a user as following, but the error “Group ‘mail’ not found” occurred.


ip-10-0-20-99:~ # useradd user1
Group ‘mail’ not found. Creating the user mailbox file with 0600 mode.

And I tried to add the user to ‘wheel’ group, but ‘wheel’ group is not found.


ip-10-0-20-99:~ # usermod -G wheel user1
usermod: group ‘wheel’ does not exist

I checked the groups, but ‘mail’ and ‘wheel’ are not found.


ip-10-0-20-99:~ # cat /etc/group
root:x:0:
shadow:x:15:vnc
trusted:x:42:
users:x:100:
messagebus:x:499:
uuidd:x:498:
nogroup:x:65533:nobody
nobody:x:65534:
man:x:62:
kmem:x:497:
lock:x:496:
tty:x:5:
utmp:x:495:
audio:x:494:
cdrom:x:493:
dialout:x:492:
disk:x:491:
input:x:490:
kvm:x:489:
lp:x:488:
tape:x:487:
video:x:486:
systemd-coredump:x:483:
systemd-journal:x:485:
systemd-timesync:x:484:
nscd:x:482:
polkitd:x:481:
haclient:x:90:
chrony:x:480:
at:x:25:
sshd:x:479:
vnc:x:478:
docker:x:477:
dockremap:!:475:
ip-10-0-20-99:~ #

Question1: Why are the groups ‘mail’ and ‘wheel’ not found?

Question2: In case the groups ‘mail’ and ‘wheel’ don’t exist, is there any problem?

Thanks.

Hi and welcome to the Forum :slight_smile:
The groups where split out into there own packages, I suspect there are no packages installed that will pull them in with ‘requires’.

I see;

zypper se wheel mail
S  | Name               | Summary                                            | Type
---+--------------------+----------------------------------------------------+--------
i  | mailx              | A MIME-Capable Implementation of the mailx Command | package
i+ | system-group-wheel | System group 'wheel'                               | package
i+ | system-user-mail   | System user and group mail                         | package

cat /etc/group | egrep "wheel|mail"
wheel:x:483:
mail:!:482:postfix
maildrop:x:59:postfix

Hello,

I installed "system-group-wheel"and “system-user-mail”,
then ‘wheel’ and ‘mail’ groups are added.

wheel:x:476:
mail:!:474:

Thank you so much for your prompt response.