lspci | grep VGA 在 ubuntu 14.04 64 位中无法检测到我的专用 AMD Radeon HD 8550M / R5 M230

lspci | grep VGA 在 ubuntu 14.04 64 位中无法检测到我的专用 AMD Radeon HD 8550M / R5 M230

我的联想 b40-70 上的 Ubuntu 14.04 无法检测到我的 AMD/ATI Radeon HD 8550M / R5 M230,它只显示英特尔集成显卡,这里是输出:

00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)

我已经尝试了xorg驱动程序和fglrx附加硬件部分,但 lspci | grep VGA 的输出仍然相同

这是 lspci 的输出:**

00:00.0 Host bridge: Intel Corporation Haswell-ULT DRAM Controller (rev 0b) 
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b) 
00:03.0 Audio device: Intel Corporation Haswell-ULT HD Audio Controller (rev 0b) 
00:14.0 USB controller: Intel Corporation 8 Series USB xHCI HC (rev 04)  
00:16.0 Communication controller: Intel Corporation 8 Series HECI #0 (rev 04) 
00:1b.0 Audio device: Intel Corporation 8 Series HD Audio Controller (rev 04)  
00:1c.0 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 1 (rev e4) 
00:1c.1 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 2 (rev e4)  
00:1c.2 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 3 (rev e4)  
00:1c.3 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 4 (rev e4)  
00:1c.4 PCI bridge: Intel Corporation 8 Series PCI Express Root Port 5 (rev e4)  
00:1d.0 USB controller: Intel Corporation 8 Series USB EHCI #1 (rev 04)  
00:1f.0 ISA bridge: Intel Corporation 8 Series LPC Controller (rev 04)  
00:1f.2 SATA controller: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] (rev 04)  
00:1f.3 SMBus: Intel Corporation 8 Series SMBus Controller (rev 04) 
02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5229 PCI Express Card Reader (rev 01)  
08:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI   Express Gigabit Ethernet Controller (rev 10)  
09:00.0 Network controller: Qualcomm Atheros QCA9565 / AR9565 Wireless Network Adapter  (rev 01)  
0a:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Sun LE [Radeon HD   8550M / R5 M230] 

请帮帮我,我想使用该xorg驱动程序,因为它可以让我的笔记本电脑保持凉爽,并且我可以使用 wacom 平板电脑。在我的旧戴尔笔记本电脑上使用 Ubuntu 4 年后,我不想切换到 Windows 7。

在此处输入图片描述

如果可能的话,利用带有图形切换功能的开源驱动程序的最佳方法是什么。

答案1

对于您使用的命令:lspci | grep VGA从命令行输出解析视频卡是不是检测您拥有的图形控制器的正确方法。

原因是对于某些视频卡,它们没有列为“[0300] VGA 兼容控制器”,它们可能是:

  • “[0302] 3D控制器”
  • “[0380] 显示控制器”(就您的情况而言)

注意括号里的数字是班级编号

更可靠的方法是获取它们的类别编号 [03xx]:

lspci -nn | grep '\[03'

或者你可以使用以下命令执行此操作:sudo lshw -c video命令

如果您的“附加驱动程序”部分可以让您安装专有驱动程序,那么它可以很好地检测您的图形控制器。

如果您想在省电模式下使用笔记本电脑,可以在 AMD Catalyst 控制中心 (如果可用) 中切换省电/高性能配置文件: 酰胺酶

sudo amdcccle您只需在终端上执行即可访问控制中心的管理模式。

如果不安装专有驱动程序,您将默认使用开源驱动程序(Xorg 驱动程序)。所以不用担心!

相关内容