我正在尝试在我的笔记本电脑上使用 OpenGL,我的笔记本电脑是一台配备 Nvidia GeForce GT 525M 的 Dell Inspiron n5110。我使用以下命令成功安装了显卡:
sudo apt-add-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install nvidia-current
sudo apt-get install nvidia-settings
sudo reboot
但后来我的 OpenGL 程序出现了一些错误,从那时起我输入了很多命令并设法做了一些事情,现在我的分辨率固定在 640X480。这些是我输入的用于修复 OpenGL 问题的命令:
sudo apt-get purge nvidia*
sudo apt-get install --reinstall xserver-xorg-video-intel libgl1-mesa-glx libgl1- mesa-dri xserver-xorg-core
sudo dpkg-reconfigure xserver-xorg
运行这些命令后,我注意到,尽管我的显卡已正确安装,但在系统设置->详细信息中它并没有出现。所以我读了这个Nvidia Graphics 显示为未知并输入以下命令,这时我的分辨率就卡在 640X480
sudo apt-get install mesa-utils
sudo reboot
sudo nvidia-xconfig
所以我想我要问的是如何才能将我的笔记本电脑恢复到以前的状态
该命令的输出如下lspci | grep VGA
:
00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: NVIDIA Corporation GF108M [GeForce GT 525M] (rev a1)
答案1
首先尝试禁用 ppa,然后从 ubuntu 档案中安装 nvidia-current:
sudo add-apt-repository --remove ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install nvidia-current
sudo apt-get install nvidia-settings