一、修改屏幕分辨率
1.修改配置文件
sudo gedit /etc/default/grub
#找到如下语句
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
#在这之后添加
GRUB_GFXMODE=1920x1080
GRUB_GFXPAYLOAD_LINUX=keep
sudo update-grub
reboot
2.若NVIDIA驱动不正常,也可导致屏幕分辨率出现问题
参考博客重新安装NVIDIA显卡驱动Anaconda、TensorFlow安装及环境配置
二、添加用户并赋予权限
#新建用户
sudo adduser username
#按照指导设置密码
#赋予权限
sudo chmod +w /etc/sudoers
sudo gedit /etc/sudoers
#找到如下语句:#User privilege specification
root ALL=(ALL:ALL)ALL
#在这之后添加
username ALL=(ALL:ALL)ALL
sudo chmod -w /etc/sudoers
三、删除用户
#再删除用户之前,要保证当前登录的不是该用户
sudo user del username