安装好系统之后出现的问题:

1 不能上网:后来通过删除链接新建一个以太网链接(自动DHCP)重启莫名其妙就好使了。

2 分辨率只有两个:1024x ? 和 800x600. 分辨率低到让人头痛。通过查看 系统设置--详细信息 发现:

当然这是后来安装显卡驱动之后的事儿了,之前图形那里显示的是cpu自带的渣渣集显。

当然安装好驱动后,分辨率自然就正常了。下面是安装的整个过程:

基本思路是:

1手动下载 NVIDIA-Linux-x86_64-375.66.run

2进入tty(一种非GUI图形界面的交互环境下,如果ctrl+alt+f1-6 ok的话,就不用向下面进入recovery-mode中) 在recovery-mode中如果密码啥的输入次数超过5次导致当前终端被锁定的话,记得ctrl+alt+f1-6 换一个其他终端接着霍霍.

3chmod 777  NVIDIA-Linux-x86_64-375.66.run

4 一路默认选择下来就ok

5 sudo reboot 选择正常启动流程就ok!

我一开始因为分辨率异常不能直接进入tty (黑屏) && 使用ppa 安装总有依赖不满足问题.所以只能使用recovery-mode ,多亏了上面写blog的外国小哥,才得以在放弃之前,成功了.

下面是小哥的链接:

https://malaikannan.wordpress.com/2016/04/06/installing-nvidia-drivers-in-ubuntu-14-04-for-980ti/

I struggled a little for installing NVIDIA Drivers and getting Ubuntu 14.04 to bootup. I was stuck in black screen for a long time and system wasn’t booting up properly after i put in Graphics Card. Below are the steps i followed to fix the issue, may be will be of help for others too.

  1. Go to Advanced Ubuntu Bootup options when system boots.
  2. Select Ubuntu in Recovery Mode.
  3. Launch root console in command prompt.
  4. #3 will launch in read only mode. You need to mount it read/write. Enter following command “mount -0 remount,rw/”
  5. If you have /home,/boot,/tmp or any other mount point on a separate partition, you can mount them with the command “mount –all”
  6. Type “sudo nano /etc/modprobe.d/blacklist.conf”. This step is for opening editor to add some files to blacklist. Add below lines to this file.
    1. blacklist amd76x_edac
    2. blacklist vga16fb
    3. blacklist nouveau
    4. blacklist rivafb
    5. blacklist nvidiafb
    6. blacklist rivatv
  7. sudo apt-get remove –purge nvidia*
  8. cd ~/Downloads
  9. Type dhclient eth0. Root mode generally doesnt have internet connection enabled, this command will enable wired internet connection (plugin ethernet internet cable)
  10. wget http://us.download.nvidia.com/XFree86/Linux-x86_64/352.79/NVIDIA-Linux-x86_64-352.79.run
  11. sudo chmod 777 NVIDIA-Linux-x86_64-352.79.run
  12. sudo ./NVIDIA-Linux-x86_64-352.79.run.  This step will take some GUI based prompts, it is self intutive.
  13. sudo nvidia-xconfig
  14. sudo reboot
  15. Select normal option for booting.

最新文章

  1. socket 函数
  2. xampp常见安装失败问题
  3. CSS清除浮动
  4. mono中显示debug信息(filename/lineno)
  5. Exception in thread java.lang.IllegalThreadStateException
  6. KMP,模式匹配算法
  7. [itint5]最大子矩阵和
  8. 进程退出前删除自身EXE
  9. 【数据库】mysql深入理解乐观锁与悲观锁
  10. CentOS7 升级 gvim 到 8.x 版本
  11. 【转】Java 通过JDBC连接Mysql数据库的方法和实例【图文说明】
  12. Security+认证812分轻松考过(备战分享)
  13. Tomcat配置自定义JAVA环境
  14. jsp九大内置对象 ,三大指令,四大作用域,七大动作
  15. docker+nginx实现负载均衡
  16. 被监测teamviewer被检测出用于商业用途
  17. Acperience (英语阅读 + 数学推导)
  18. Oracle:如何创建一个只有查看权限的用户
  19. Jmeter 4.0 扩展插件
  20. POJ_3342_Party_at_Hali-Bula

热门文章

  1. Deepin-安装node
  2. SQL 约束(Constraints)
  3. 小贝_mysql数据库备份与恢复
  4. HDU 4277 USACO ORZ(暴力+双向枚举)
  5. linux-shell脚本命令之awk
  6. druid 参考配置
  7. Installing Node.js via package manager
  8. LeetCode 1.两数之和(JS)
  9. lambda和抽象类
  10. Jackson 框架的高阶应用