暂停不适用于 Dell 3537 的 Ubuntu 16.04

cla*_*sus 15 gnome suspend radeon 16.04

直到昨天,我都使用 Ubuntu(香草,Unity)14.04,自从新的 LTS 版本问世以来,我决定进行 Ubuntu GNOME 16.04 全新安装。

由于我安装了 Ubuntu GNOME 16.04(64 位),我的 Dell Inspiron 3537 上的挂起模式出现了问题(我在 14.04 上没有这个问题)。

当我选择暂停会话时,屏幕变黑,风扇关闭几秒钟(2 或 3 秒),然后它们重新启动,速度越来越快。我必须强制关闭(按住电源按钮)计算机才能重新启动它。

我做了一些研究,发现 Ubuntu 16.04 不支持 AMD Radeon 专有图形驱动程序。我不知道它是否相关,但由于我有一个 AD Radeon HD8850M,我运行了一个lspci | grep VGA,结果如下:

00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 09)
03:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Venus PRO [Radeon HD 8850M / R9 M265X] (rev ff)
Run Code Online (Sandbox Code Playgroud)

另外,我安装了开源驱动程序:

$ sudo apt-get install xserver-xorg-video-ati
xserver-xorg-video-ati is already the newest version (1:7.7.0-1).
Run Code Online (Sandbox Code Playgroud)

如果您需要任何其他信息,请告诉我。

cla*_*sus 19

7 月 19 日更新:似乎此错误已在上游使用内核版本修复4.4.0-28-generic。我自从迁移到 ArchLinux,所以这仍然需要测试,但是有人说它可以在启动板错误上与这个内核版本一起使用

原帖: 好像是4.4.0内核的bug,安装4.4.8就解决了。您可以等待 4.4.0 内核修复,或安装 4.4.8 内核。

我建议等待 4.4.0 修复,但我安装了 4.4.8 并且我没有看到任何问题。

执行以下命令以安装 4.4.8 内核:

在 32 位上

下载

cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.8-wily/linux-headers-4.4.8-040408_4.4.8-040408.201604200335_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.8-wily/linux-headers-4.4.8-040408-generic_4.4.8-040408.201604200335_i386.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.8-wily/linux-image-4.4.8-040408-generic_4.4.8-040408.201604200335_i386.deb
Run Code Online (Sandbox Code Playgroud)

安装

sudo dpkg -i linux-headers-4.4*.deb linux-image-4.4*.deb
Run Code Online (Sandbox Code Playgroud)

在 64 位上

cd /tmp
wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.8-wily/linux-headers-4.4.8-040408_4.4.8-040408.201604200335_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.8-wily/linux-headers-4.4.8-040408-generic_4.4.8-040408.201604200335_amd64.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.8-wily/linux-image-4.4.8-040408-generic_4.4.8-040408.201604200335_amd64.deb
Run Code Online (Sandbox Code Playgroud)

安装

sudo dpkg -i linux-headers-4.4*.deb linux-image-4.4*.deb
Run Code Online (Sandbox Code Playgroud)

来源:https : //bugs.launchpad.net/ubuntu/+source/linux/+bug/1574125

如果没有更好的选择出现,我会在几天后接受这个答案。