如何安装英特尔集成图形控制器?

如何安装英特尔集成图形控制器?

我尝试找到我正在运行的显卡,终端中的命令只给我这个:

VGA compatible controller: Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller. 

我该如何安装正确的驱动程序?我发现并非所有东西都显示正确。我想设置一个合适的分辨率,但无法设置,因为我的 Ubuntu 12.04 机器上没有正确的驱动程序。这是一台 Acer Aspire One 上网本。

答案1

您运行的程序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
                          ^^^^^^

如您所见,这是我的专用显卡的“驱动程序”。在您的情况下,它显示为这样,因为最近英特尔现在在其 CPU 中包含了 GPU 属性。因此输出是正确的。

如果您当前的驱动程序有问题,则可能是错误,因此应在 LaunchPad 中报告。在 AskUbuntu 中有指南可以做到这一点

答案2

以下是安装英特尔显卡驱动程序的方法

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:

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:
  • 打开Ubuntu 软件中心
  • 从顶层菜单中选择编辑|软件源... 。
  • 选择其他软件标签。
  • 点击添加... 按钮。
  • 输入以下内容:debhttps://download.01.org/gfx/ubuntu/12.04/main
  • 点击+添加来源按钮。
  • 当系统要求时,提供您的用户密码。
  • 点击关闭按钮。
  • 通过执行以下命令来更新并安装:

    $ sudo apt-get update
    $ sudo apt-get install xserver-xorg-video-intel
    

希望它对你有用!

答案3

下载Intel 显卡安装程序

英特尔 Linux 图形安装程序可让您轻松为英特尔图形硬件安装最新的图形和视频驱动程序。这可让您及时了解英特尔® 图形堆栈的最新增强功能、优化和修复,以确保您的英特尔图形硬件获得最佳用户体验。英特尔® Linux 图形安装程序适用于最新版本的 Ubuntu 和 Fedora。

下载完成后,只需按下键盘上的Ctrl+ Alt+T即可打开终端。打开后,导航到下载文件夹,然后运行以下命令:

sudo dpkg -i <package_name>.deb

安装后,运行已安装的应用程序,它将检测并下载适合您的驱动程序。

编辑

此驱动程序文件已在 12.04 上进行了全面更新,运行正常,但如果出于任何原因出现错误或问题,您可以下载版本 1.0.1这里。请记住这是 32 位版本。

编辑2

试试这个,只需按下键盘上的Ctrl+ Alt+T即可打开终端。打开后,运行以下命令:

sudo apt-add-repository ppa:glasen/intel-driver
sudo apt-get update
sudo apt-get install xserver-xorg-video-intel

来源:英特尔

相关内容