最近使用 useradd -r 選項進行創建賬戶,用於測試,對-r 選項不是很明白,下麵記錄一些調研的過程: -r, --system Create a system account. System users will be created with no aging information in ...
最近使用 useradd -r 選項進行創建賬戶,用於測試,對-r 選項不是很明白,下麵記錄一些調研的過程:
-r, --system Create a system account. System users will be created with no aging information in /etc/shadow, and their numeric identifiers are chosen in the SYS_UID_MIN-SYS_UID_MAX range, defined in /etc/login.defs, instead of UID_MIN-UID_MAX (and their GID counterparts for the creation of groups). Note that useradd will not create a home directory for such a user, regardless of the default setting in /etc/login.defs (CREATE_HOME). You have to specify the -m options if you want a home directory for a system account to be created.
什麼是系統賬戶?系統賬戶和普通賬戶有什麼區別?(參考連接)
When you are creating an account to run a daemon, service, or other system software, rather than an account for interactive use. Technically, it makes no difference, but in the real world it turns out there are long term benefits in keeping user and software accounts in separate parts of the numeric space. Mostly, it makes it easy to tell what the account is, and if a human should be able to log in.
系統賬戶的用戶id一般是小於一千的;其實就是給UID一個確定的代號,它不能用於登錄,一般是給程式來使用;
保持更新,轉載請註明出處;更多內容請關註 cnblogs.com/xuyaowen;