问题描述
我的服务器上有一个用于所有用户的设置。每次创建新用户时,我都必须一遍又一遍地复制所有设置。
例如:
-
.vimrc。
-
。轮廓
-
.bashrc
-
Firefox 主页到我们的内部网
-
进化设置(服务器和用户名)\netc…
我看到 skel 可以做到这一点,当我 adduser
时,有没有一种简单的方法可以用我的设置来设置用户?
谢谢
最佳答案
所有内容都应位于 /etc/skel
文件夹中。
您需要在桌面上为所有用户创建一个链接:
mkdir -p /etc/skel/Desktop
cd /etc/skel/Desktop/
vi shortcut.desktop
[Desktop Entry]
Version=1.0
Name=ShortCut
Comment=Visit ShortCut
GenericName=ShortCut
Exec=firefox http://intranet.ShortCut.com
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=firefox
Categories=Internet
chmod +x shortcut.desktop
这将在桌面上创建一个链接。
以下几篇文章可以满足您的需求:
-
How to ensure that all new users have the same profile settings as the current user?
-
http://www.linuxhowtos.org/Tips%20and%20Tricks/using_skel.htm
-
http://www.thegeekstuff.com/2009/06/useradd-adduser-newuser-how-to-create-linux-users/#more-552