使用useradd新增用户后使用su [用户名],结果只有一个$,显然不是熟悉的bash,只好自己配了。

用root用户来改变新增用户的终端为bash

:::sh
sudo passwd
su
usermod -s /bin/bash [username]

使用echo $SHELL看看是否修改成功。

然后你想在新用户里面使用sudo,结果跳出错误xx is not in the sudoers file. This incident will be reported

这时候还是需要请出root用户来解决。

:::sh
chmod u+w /etc/sudoers
gedit /etc/sudoers
#在root ALL=(ALL) ALL 下面添加
[username] ALL=(ALL) ALL
chmod u-w /etc/sudoers