在網上查了一下,解決的方法不少,終於找到了一個適合我這裏問題的方案,引用以下: 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,也許能夠解決驅動安裝的辦法。