ubuntu 安装NVIDIA驱动过程

用U盘引导安装时,提示

 nouveau 0000:65:00.0: fifo: SCHED_ERROR 08 []

解决方法:
进入grub 内核启动参数后增加 nomodeset

nomodeset parameter instructs the kernel to not load video drivers and use BIOS modes instead until X is loaded.
因为内核初始化显卡时候出错,增加这个参数后主要作用是不加载NVIDIA的驱动
具体解释:
https://ubuntuforums.org/showthread.php?t=1613132


启动进入系统之后:
sudo apt update
sudo apt full-upgrade
sudo ubuntu-drivers autoinstall



主要参考文章:
https://ubuntuforums.org/showthread.php?t=2370969



另外,可以参考
https://linuxconfig.org/how-to-install-the-nvidia-drivers-on-ubuntu-18-04-bionic-beaver-linux
讲了怎么安装nvidia的驱动

安装失败,后来用ubuntu 18.04
安装完成后apt-get update
apt-get dist-upgrade

好像就可以了。 因为software 里面的additional drivers里面已经有nvidia-driver-410
参考:
https://blog.csdn.net/ghw15221836342/article/details/79571559
 
https://askubuntu.com/questions/1054954/how-to-install-nvidia-driver-in-ubuntu-18-04
原文地址:https://www.cnblogs.com/cute/p/9805700.html