dell G3 游匣 迁徙至 ubuntu ( i7-9750H GTX1660ti mobile) 显卡安装问题总结 以及 apt 下载速度慢的问题

硬件:如题,dell G3 游匣,  i7-9750H GTX1660ti mobile。

系统:ubuntu 16.04.03 LTS

1. 需关闭BIOS 中安全启动“secure boot”以及启动“secure boot”的修改(BIOS中“security boot” 下面的一项,修改成“auto xxx”的模式)可解决“sudo lshw -C display” 返回项目中独立显卡后面带有“unclaimed”标识。

 

2. 硬件型号无法被系统识别?“sudo lshw -C display” 返回项目中,独立显卡型号为字母(如32e0等)。可执行“sudo update-pciids”进行更新。更新完成后,上述命令的返回将显示“TU116M [ GeForce GTX1660 Ti Mobile ]”.

 

3. 驱动安装。添加源“

sudo add-apt-repository ppa:graphics-drivers/ppa

sudo apt update

完成后,安装418驱动 nvidia-418

sudo apt-get install nvidia-418

————————————————————————————————————————————————————

系统的推荐驱动为nvidia-430 (可以从”software & updates“ 的”additional drivers“ 中查看,或者”sudo ubuntu-drivers devices“进行查看)。430驱动安装后会导致重启进入”low-graphic mode“的问题,若产生此问题,解决方法为”

 在low-graphic mode 界面返回命令行,在黑屏命令行界面按“ctrl+alt+fn+F1/F4”.进入后台命令行界面。登陆自己电脑的用户名和密码。执行:

sudo prime-select intel    % 切换回集成显卡

可通过

sudo service lightdm start %返回登陆界面

或者

sudo reboot %进行重启。

——————————————————————————————————————————————————————

解决国内apt-get 安装速度较慢的问题

在software & updates 中切换服务器(改变"download from"的选项为“others”,选择系统推荐的服务器)。本人的推荐服务器为清华镜像(感谢有关维护人员)。

___________________________________________________________________________________________________

Speed up the "git clone" command via s.

git config --global http.proxy 'socks5://127.0.0.1:1080'

git config --global https.proxy 'socks5://127.0.0.1:1080'

Unset the proxy of git 

git config --global --unset https.proxy

git config --global --unset http.proxy

 

Set s for only the git command:

git config --global http.https://github.com.proxy 'socks5://127.0.0.1:1080'

git config --global http.https://github.com.proxy 'socks5://127.0.0.1:1080'

 

Thanks for the original article:

https://blog.fazero.me/2015/07/11/%E7%94%A8s%E5%8A%A0%E9%80%9Fgit-clone/

你可能感兴趣的:(Ubuntu)