Centos

具有主目錄和 sudo 權限的 CentOS 上的 useradd

  • April 6, 2019

adduseror有這麼多變種useradd——哪個是正確的?

CentOS release 5.11 (Final)我正在使用adduser --create-home baz但有點喜歡 Ubuntu 詢問有關聯繫資訊的無關問題的方式。在Ubuntu上,adduser desired_user_name sudo這更容易記住——至少對我來說。

Digital Ocean說要使用adduserand usermod

使用 usermod 命令將使用者添加到 wheel 組。

usermod -aG wheel username

預設情況下,在 CentOS 上,wheel 組的成員具有 sudo 權限。

只是處理方式不同?

(這是在 CentOS 上執行的 Elastix 2.5(星號)上。)

您可以使用-G

對於CentOS 文件

-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>

引用自:https://unix.stackexchange.com/questions/332989