这里使用的是 Ubuntu 14.04,安装了 nvidia 驱动程序。我运行 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 Lynx Point-LP USB xHCI HC (rev 04)
00:16.0 Communication controller: Intel Corporation Lynx Point-LP HECI #0 (rev 04)
00:1b.0 Audio device: Intel Corporation Lynx Point-LP HD Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 3 (rev e4)
00:1c.4 PCI bridge: Intel Corporation Lynx Point-LP PCI Express Root Port 5 (rev e4)
00:1d.0 USB controller: Intel Corporation Lynx Point-LP USB EHCI #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation Lynx Point-LP LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation Lynx Point-LP SATA Controller 1 [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation Lynx Point-LP SMBus Controller (rev 04)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 10)
02:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 840M] (rev a2)
我必须说,在 BIOS 中,我为图形设备使用了“独立”而不是“仅 UMA”。当我查看 nvidia x 服务器设置时,它显示当我观看视频和其他内容时,该设备的使用率达到一定百分比。
我的问题是
我的 nvidia 显卡是否正在使用?如果是,为什么我的系统显示 vga 兼容控制器是英特尔图形控制器?如果没有,我该如何启用 nvidia 显卡?
答案1
您正在“混合”模式下运行:NVidia 和 Intel 控制器都在工作!
00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b)
02:00.0 3D controller: NVIDIA Corporation GM108M [GeForce 840M] (rev a2)
因此,如果 PC 没有进行任何抗锯齿或 3D 工作,则只会使用 Intel 卡。一旦您开始观看视频或玩游戏(不是在谈论俄罗斯方块,而是在谈论高级 3D 游戏),您就会看到 NVidia 的利用率急剧上升!
所以:你没事;干得漂亮!没有破坏任何东西! 进行系统备份... ;-)
一些背景信息:lshw -c video
当我的 BIOS 图形设置设为IGD:(集成图形适配器)时 ,我的计算机的输出如下。
*-display
description: VGA compatible controller
product: Mobile 4 Series Chipset Integrated Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
version: 07
width: 64 bits
clock: 33MHz
capabilities: vga_controller bus_master cap_list rom
configuration: driver=i915 latency=0
resources: irq:44 memory:f4000000-f43fffff memory:d0000000-dfffffff ioport:1800(size=8)
并将其设置为NVidia:
*-display
description: VGA compatible controller
product: G96M [GeForce 9600M GT]
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:01:00.0
version: a1
width: 64 bits
clock: 33MHz
capabilities: vga_controller bus_master cap_list rom
configuration: driver=nouveau latency=0
resources: irq:46 memory:f2000000-f2ffffff memory:d0000000-dfffffff memory:f0000000-f1ffffff ioport:2000(size=128)
现在lspci
给出:
01:00.0 VGA compatible controller: NVIDIA Corporation G96M [GeForce 9600M GT] (rev a1)
因此,从您的设置中可以很清楚地看出,两张卡都在根据您的需求分别发挥其最佳作用……