在linux上添加bash脚本来创建用户
我请求您帮助创建一个脚本来创建用户和密码,单击 1
useradd client1 -M -s /bin/false
passwd client1
即可创建一个新用户:
登录名:client1 密码:test
可以吗?如果是的话,请问如何?
I ask for your help to create a script to create a user and a password on 1 click
useradd client1 -M -s /bin/false
passwd client1
To have for instance a new user with:
login: client1 password: test
Is it possible ? and if it is, how please ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该做:
This should do:
man useradd 会给你提示来执行此操作,我相信这就是方法:
useradd [username] -d /path_to_home_directory -p [encrypted_password]
现在,非常重要,useradd 的文档说 -p 参数期望返回加密的密码通过地穴(7);因此,您需要做的是创建一个带有密码“test”的示例用户,然后打开 /etc/shadow 并从文件中复制并粘贴密码并在脚本中使用它。
假设 /etc/shadow 中加密的“test”显示为“zxs1@431sa”,您的最终脚本应该是:
useradd [username] -d /path_to_home_dir -p zxs1@431sa [enter]
我认为应该这样做。
参考文献: http://linux.die.net/man/8/useradd
man useradd will give you hints to do this and I believe this is how:
useradd [username] -d /path_to_home_directory -p [encrypted_password]
now, VERY IMPORTANT, the documentation for useradd says that the -p parameter expects the password ENCRYPTED as returned by crypt(7); therefore, what you need to do is create a sample user with password "test" for example, then open up /etc/shadow and copy and paste the password from the file and use it on your script.
Suppose that "test" encrypted in /etc/shadow appears as "zxs1@431sa" your final script should be:
useradd [username] -d /path_to_home_dir -p zxs1@431sa [enter]
That should do it, I think.
References: http://linux.die.net/man/8/useradd
好的,我找到了:
第一个脚本创建用户:(add_user.sh)
第二个脚本创建密码或更改密码:
你知道我如何从 php 文件调用这个脚本吗?
Ok I find it :
First Script create user: (add_user.sh)
Second one create a password or change it:
Do you know how i can call this script from php file ?