在网上查了一下,解决的方法不少,终于找到了一个适合我这里问题的方案,引用以下: css
I have recently received a similar issue with myPangolin Performance laptop. The folks at System 76 told me to do the following:shell
Click Okay and then select the option to get a terminal. (alternatively you can press ctr+alt+f1 to bring up another tty)ubuntu
sudo chown lightdm:lightdm -R /var/lib/lightdm sudo chown avahi-autoipd:avahi-autoipd -R /var/lib/avahi-autoipd sudo chown colord:colord -R /var/lib/colord sudo reboot
----------------------------------------------------------------------------session
附:在网上还找到另一种方式,安装网卡驱动:日志
# 对于最新的Nvidia二进制驱动: sudo add-apt-repository ppa:ubuntu-x-swat/x-updates sudo apt-get update sudo apt-get install nvidia-current nvidia-current-modaliases nvidia-settings # 对于最新的ATI/AMD二进制驱动: sudo add-apt-repository ppa:ubuntu-x-swat/x-updates sudo apt-get update sudo apt-get install fglrx
我安装的是nvidia的驱动,重启后进入到登陆界面,输入用户名密码后仍是没法进入桌面,一直在登陆界面循环,解决办法以下:code
alternatively you can press ctr+alt+f1 to bring up another ttyorm
卸载nvidia驱动:ip
sudo apt-get remove --purge nvidia-* sudo apt-get install ubuntu-desktop sudo rm /etc/X11/xorg.conf echo 'nouveau' | sudo tee -a /etc/modules #重启系统 sudo reboot
重启以后便可。rem
缘由查找:terminal
出现循环登陆问题的时候,能够按照上面说的方法进入shell,在home目录下找到.xsession-errors文件
# cd home 查看是否有.xsession-errors cd ~ ls -a #用vi打开.xsession-errors文件 vi .xsession-errors
接着你就能够看到里面的日志信息,按照日志里面的信息去baidu,也许能够解决驱动安装的办法。