记:linux 新增用户命令
useradd -m aaa #新增aaa用户
passwd aaa #修改aaa密码
<p>#赋予aaa账号使用sudo命令
vi /etc/sudoers</p>
<p>在98行左右增加</p>
<h2 id="Allow root to run any commands anywhere">Allow root to run any commands anywhere</h2>
<p>root ALL=(ALL) ALL
aaa ALL=(ALL) ALL</p>
<p>wq!保存</p>
<p>后切换到普通用户执行
sudo /etc/init.d/network restart