useradd:无法锁定/etc/passwd;稍后再试

useradd:无法锁定/etc/passwd;稍后再试

尝试添加用户:

useradd -c "test" -d /home/bbbbbbbb -e "01-jan-2013" 
  -f 10 -g admin -p secretfgjdhdgd -s /bin/bash -u 123456 blobblob

但得到:

useradd: cannot lock /etc/passwd; try again later.

答案1

您需要useradd以 root 权限运行,例如使用sudo

sudo -- useradd -c "test" -d /home/bbbbbbbb -e "01-jan-2013" -f 10 -g admin -p secretfgjdhdgd -s /bin/bash -u 123456 blobblob

相关内容