adduser问题Unix系统 -电脑资料

时间:2018-06-07 08:27:28
染雾
分享
WORD下载 PDF下载 投诉

http://www.chinaunix.net/jh/5/16323.html 我在创建用户时遇到这样的一个问题,请那位大侠指点!!!下面是我做的步骤请问这样做对不对,

adduser问题Unix系统

。 dell2650b#adduser Useoption``-silent''ifyoudon'tw ant toseeallwarningsandquestions. Check/etc/shells Shell:/us

http://www.chinaunix.net/jh/5/16323.html

我在创建用户时遇到这样的一个问题,请那位大侠指点!!!下面是我做的步骤请问这样做对不对。

dell2650b#adduser

Useoption``-silent''ifyoudon'twanttoseeallwarningsandquestions.

Check/etc/shells

Shell:/usr/local/bin/bashnotexecutable!

Check/etc/master.passwd

Check/etc/group

User``/wheel/tony''hasgid1002butagroupwiththisgiddoesnotexist.

Usernamesmustmatchregularexpression:[lydong]:

Enteryourdefaultshell:cshdatenoshtcsh[tcsh]:

Yourdefaultshellis:tcsh->/bin/tcsh

EnteryourdefaultHOMEpartition:[/home/lydong]:

Create/home/lydong

Copydotfilesfrom:/usr/share/skelno[/usr/share/skel]:

Sendmessagefromfile:/etc/adduser.messagenoy[y]:n

Usepasswords(y/n)[y]:y

Writeyourchangesto/etc/adduser.conf?(y/n)[n]:y

Ok,let'sgo.

Don'tworryaboutmistakes.Iwillgiveyouthechancelatertocorrectanyinput.

Enterusername[lydong]:luoyaodong

Usernamedoesn'tmatchtheregexp/lydong/

Enterusername[lydong]:lydong

Pleaseenterausername

Enterusername[lydong]:oeheonse

Usernamedoesn'tmatchtheregexp/lydong/

Enterusername[lydong]:^C

【发表回复】【查看CU论坛原帖】【关闭】


夜猫子 回复于:2002-11-13 18:05:25在adduser.conf里usernameregexp指定了用来验证新用户名是否合乎规范的正则表达式,你可以修改这个值来强制用户名符合你的规定,

电脑资料

《adduser问题Unix系统》()。

默认的情况下应该是:

usernameregexp='^[a-z0-9_][a-z0-9_-]*$'

这是说用户名必须以a-z、0-9以及'_'开头,后边可以跟多个a-z、0-9、'_'、'-'字符,当你加新用户的时候,adduser就会拿这个正则表达式来效验你的用户名是否规范。

看了你输出结果:

Usernamesmustmatchregularexpression:[lydong]:

这说明你把正则表达式给设置成了lydong,后边应用这个正则表达式来效验你的新用户名自然是通不过了(除非你输入lydong)。

修改也很简单,修改为usernameregexp='^[a-z0-9_][a-z0-9_-]*$'就可以了。


shenvo 回复于:2002-11-13 18:08:40删除/etc/adduser.conf

重建用户时前面的变量设定建议你采用默认值


zhangluoer 回复于:2003-08-17 10:48:35很经典!


AutoSPy 回复于:2003-08-20 17:28:44#pwuseradd<参数>

原文转自:http://www.ltesting.net

adduser问题Unix系统 -电脑资料

手机扫码分享

Top