红帽 Linux 5.10(蒂坎加)
我正在尝试将现有用户添加到第二组。该用户已经是名为“prim”的主要组的一部分,我想将其添加到的次要组是“sec”。我已经尝试过这些:
sudo usermod --append sec chuck # Got the syntax screen for usermod
sudo usermod -G prim -append sec chuck # Got the syntax screen again.
的手册页usermod
说--append GROUP
需要-G
,我就是这么做的。那么,如何将该用户添加到第二组?
答案1
usermod -aG groupname username