寻找我的笔记本电脑和 Linux 内核之间的匹配

寻找我的笔记本电脑和 Linux 内核之间的匹配

我有一个“LENOVO Ideapad 300-14IBR 80M2”。基本的 Debian 安装对我来说失败了。 (很多问题:wifi、挂起、GPU、各种崩溃...)我随机使用了jessie-backportnon-free,也编译和安装了一些 Linux 内核。

#dpkg --list | grep linux-image
ii  linux-image-3.16.0-4-amd64              3.16.36-1+deb8u1                     amd64        Linux 3.16 for 64-bit PCs
ii  linux-image-4.2.1-040201-generic        4.2.1-040201.201509211431            amd64        Linux kernel image for version 4.2.1 on 64 bit x86 SMP
ii  linux-image-4.4.13                      1.0.NAS                              amd64        Linux kernel binary image for version 4.4.13
ii  linux-image-4.5.0-0.bpo.2-amd64         4.5.4-1~bpo8+1                       amd64        Linux 4.5 for 64-bit PCs
ii  linux-image-4.6.0                       1.0.NAS                              amd64        Linux kernel binary image for version 4.6.0
ii  linux-image-4.6.0-0.bpo.1-amd64         4.6.3-1~bpo8+1                       amd64        Linux 4.6 for 64-bit PCs
ii  linux-image-amd64                       3.16+63                              amd64        Linux for 64-bit PCs (meta-package)

GPUlinux-image-4.2.1-040201-generic正在一点点工作。 (视频播放时 CPU 消耗较少...但暂停、休眠只会使计算机崩溃)

我显然不知道自己在做什么,但这对我来说是学习的好时机。我的主要问题是我的 GPU:

 #lspci -vnn | grep VGA
 00:02.0 VGA compatible controller [0300]: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Integrated Graphics Controller [8086:22b1] (rev 21) (prog-if 00 [VGA controller])

如何根据特定硬件找到最适合我的系统的内核?我需要自己编译它还是有一个值得信赖的内核源代码,里面有 GPU/驱动程序?

现在我的/etc/apt/sources.list

deb ftp://ftp.debian.org/debian stable main contrib non-free
deb http://httpredir.debian.org/debian/ jessie main contrib non-free
deb http://ftp.debian.org/debian jessie-backports main contrib non-free

谢谢。

相关内容