Linux无法添加用户,报“useradd: cannot open /etc/passwd”问题解决过程记录

Posted 年少~年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux无法添加用户,报“useradd: cannot open /etc/passwd”问题解决过程记录相关的知识,希望对你有一定的参考价值。

在一个新的Linux环境添加用户的时候,发现不能添加,遇到了以下错误

useradd: cannot open /etc/passwd

解决方法:
用lsattr命令查看/etc/passwd的隐藏权限

lsattr /etc/passwd
出现 -----a-------------- /etc/passwd
权限 a 说明设定文件不能被删除、改名、设定链接关系,同时不能写入或新增内容。

用chattr命令对/etc/group去除a权限位:

chattr -a /etc/passwd
使用 useradd admin 提示:         
useradd: cannot open /etc/shadow
lsattr /etc/shadow
-----a-------------- /etc/shadow

用同样的方式去除/etc/shadow 权限:

 chattr -a /etc/shadow

以上是关于Linux无法添加用户,报“useradd: cannot open /etc/passwd”问题解决过程记录的主要内容,如果未能解决你的问题,请参考以下文章

Linux虚拟机(lvm)报Unmount and run xfs_repair

linux免密登录secure报密码过期

Linux主机创建普通用户登录报错,SSH服务器拒绝了密码,请再试一次

ubuntu16.04添加网络打印机报错

linux中普通用户添加用户时报命令没找到

linux——定时执行操作报错(sudo: 没有终端存在,且未指定 askpass 程序)