淺談/etc/default/useradd 檔案

來源:互聯網
上載者:User

淺談/etc/default/useradd 檔案

首先看下/etc/default/useradd 檔案的內容,提示useradd default file ,建立使用者是使用的預設檔案

# useradd defaults file
 GROUP=100
 HOME=/home
 INACTIVE=-1
 EXPIRE=
 SHELL=/bin/bash
 SKEL=/etc/skel
 CREATE_MAIL_SPOOL=yes

每一個參數值具體是什麼意思呢 ?
GROUP = 100 表示 使用者組ID
 HOME = /HOME 表示家目錄的位置
INACTIVE = -1 表示 是否啟用帳號到期停權,-1表示不啟用。
EXPIRE=      表示帳號是否啟用到期設定    無表示不啟用
SHELL = /bin/bash 表示帳號使用shell種類
SKEL = /etc/skel 表示帳號使用預設檔案內容, 可以理解為添加使用者的目錄預設檔案存放位置。也就是說,當使用者用useradd添加使用者時,使用者主目錄下的檔案都是從這個目錄中複製的                  
CREATE_MAIL_SPOOL=yes  表示是否建立郵箱緩衝  yes表示建立

如何在添加使用者時,預設的在家目錄下添加 mojo 檔案夾,就需要修改 /etc/skel檔案下的內容, 樣本如下   
[root@localhost ~]# touch /etc/skel/mojo
[root@localhost ~]# ll -a /etc/skel/mojo
-rw-r--r-- 1 root root 0 Apr 12 09:06 /etc/skel/mojo
[root@localhost ~]# useradd inds01
[root@localhost ~]# ll /home/inds01/
total 0
-rw-r--r-- 1 inds01 inds01 0 Apr 12 09:04 mojo
[root@localhost ~]#

Linux基礎教程:/etc/default/useradd檔案 

本文永久更新連結地址:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.