Centos
具有主目錄和 sudo 權限的 CentOS 上的 useradd
adduser
or有這麼多變種useradd
——哪個是正確的?在
CentOS release 5.11 (Final)
我正在使用adduser --create-home baz
但有點喜歡 Ubuntu 詢問有關聯繫資訊的無關問題的方式。在Ubuntu上,adduser desired_user_name sudo
這更容易記住——至少對我來說。Digital Ocean說要使用
adduser
andusermod
:使用 usermod 命令將使用者添加到 wheel 組。
usermod -aG wheel username
預設情況下,在 CentOS 上,wheel 組的成員具有 sudo 權限。
只是處理方式不同?
(這是在 CentOS 上執行的 Elastix 2.5(星號)上。)
您可以使用
-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>