1

我在 RHEL7 中创建了一个新用户

useradd newuser

当我打开这个用户的 ~/.bash_profile 时,输出是

 $cat -n ~/.bash_profile
 1  # .bash_profile
 2
 3  # Get the aliases and functions
 4  if [ -f ~/.bashrc ]; then
 5      . ~/.bashrc
 6   fi
 7    
 8  # User specific environment and startup programs
 9    
 10  PATH=$PATH:$HOME/.local/bin:$HOME/bin
 11
 12  export PATH
 $

从哪里bash_profile继承到新添加的用户?如果我需要为$PATH使用useradd. 我怎样才能做到这一点 ?

4

1 回答 1

1

From /etc/skel(或SKEL_DIRfrom -k)如手册页中-m/--create-home最有可能的选项所述。

如果您不希望这样做,则无需useradd创建主目录和/或在创建用户后删除文件。

于 2015-01-29T15:55:54.037 回答