Ubuntu16.04中使能root用户登陆后,会弹出如下所示的对话框。
读取/root/.profile时发现错误
解决方法为:
使用有管理员权限的用户(否则无法打开该文件)在命令行敲入
gedit /root/.profile
或者
sudo gedit /root/.profile
将文件末尾一句 mesg n || true更改为:
tty -s && mesg n || true
保存退出,再重新登录root账户就可以了。
Ubuntu16.04中使能root用户登陆后,会弹出如下所示的对话框。
读取/root/.profile时发现错误
解决方法为:
使用有管理员权限的用户(否则无法打开该文件)在命令行敲入
gedit /root/.profile
或者
sudo gedit /root/.profile
将文件末尾一句 mesg n || true更改为:
tty -s && mesg n || true
保存退出,再重新登录root账户就可以了。