adduser
or有很多变体useradd
——哪一个是正确的?
我CentOS release 5.11 (Final)
正在使用adduser --create-home baz
但更喜欢 Ubuntu 询问有关联系信息的无关问题的方式。在乌班图,只是adduser desired_user_name sudo
更容易记住——至少对我来说。
数字海洋说使用adduser
和usermod
:
使用usermod命令将用户添加到wheel组。
usermod -aG wheel username
默认情况下,在 CentOS 上,wheel 组的成员具有 sudo 权限。
只是处理方式不同?
(这是在 CentOS 上运行的 Elastix 2.5(星号)上。)
答案1
您可以使用-G
-G<group-list> List of additional (other than default) group names or group numbers, separated by commas, of which the user is a member. The groups must exist prior to being specified here.
所以你可以这样做
useradd username -d <customer_home_dir_path> -G <group_names>