每次玩linux都会去网上找一些命令,想想应该记录一下,希望方便大家,当然更方便自己。
1.添加用户
useradd username//添加用户 passwd username//设置密码
2.配置为sudoer
chmod ug+w /etc/sudoers //设置sudoer可读权限
编辑/etc/sudoers文件,添加一行,最终如下:
root ALL=(ALL:ALL) ALL//原有 jaylin ALL=(ALL:ALL) ALL//添加
2022-07-15 18:36:52
每次玩linux都会去网上找一些命令,想想应该记录一下,希望方便大家,当然更方便自己。
1.添加用户
useradd username//添加用户 passwd username//设置密码
2.配置为sudoer
chmod ug+w /etc/sudoers //设置sudoer可读权限
编辑/etc/sudoers文件,添加一行,最终如下:
root ALL=(ALL:ALL) ALL//原有 jaylin ALL=(ALL:ALL) ALL//添加