Oro*_*pie 5 intel-graphics software-installation
我试图找到我正在运行的显卡,终端中的命令只给了我这个:
VGA compatible controller: Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller.
Run Code Online (Sandbox Code Playgroud)
如何安装正确的驱动程序?正如我所看到的,并非所有内容都正确显示。我想设置一个合适的分辨率,但不能,因为我的 Ubuntu 12.04 机器上没有正确的驱动程序。这是 Acer Aspire One 上网本。
您运行的内容lspci | grep -i vga实际上为您提供了“视频卡”。您已经在使用适合您的系统的驱动程序。如果你想查看内核驱动程序,你应该使用lspci -knn | grep -A2 VGA
lspci -knn | grep -A2 VGA
03:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] RV515 [Radeon X1300/X1550] [1002:7146]
Subsystem: VISIONTEK Device [1545:2352]
Kernel driver in use: radeon
^^^^^^
Run Code Online (Sandbox Code Playgroud)
正如您所看到的,这是我的专用显卡的“驱动程序”。在你的例子中,它显示了这样的情况,因为最近英特尔现在在他们的CPU中包含了GPU属性。所以输出是正确的。
如果您当前的驱动程序有问题,可能是一个错误,因此应该在 LaunchPad 中报告。AskUbuntu 中有一个这样做的指南。
以下是安装Intel显卡驱动的方法
1. If you are using Ubuntu 12.10 or higher, then you don't have to worry, as Intel has
released a software for Linux system which will scans your graphics card and try to
install appropriate graphics driver. Please refer following link:
Run Code Online (Sandbox Code Playgroud)
https://01.org/linuxgraphics/downloads/2013/intelr-linux-graphics-installer-version-1.0.2
2. If you are using Ubuntu 12.04 or less then you can always install you graphics driver
by running these command:
$ sudo apt-get update
$ sudo apt-get install xserver-xorg-video-intel
3. You can also give a try to this:
$ sudo (jockey-gtk &)
As it will scan all your available drivers and try to install the missing one.
4. If nothing works then finally install latest driver by following these steps:
Run Code Online (Sandbox Code Playgroud)
通过执行以下命令更新并安装:
$ sudo apt-get update
$ sudo apt-get install xserver-xorg-video-intel
Run Code Online (Sandbox Code Playgroud)希望它对你有用!