我的系统在启动时卡在 ubuntu 徽标处。为了解决这个问题,我设置了nomodeset
。
但现在出现了分辨率为 1024x768 的问题。以下是必要的信息:
lspci -nnk | grep -iA2 vga
00:02.0 VGA compatible controller [0300]: Intel Corporation 82945G/GZ Integrated Graphics Controller [8086:2772] (rev 02)
Subsystem: Hewlett-Packard Company 82945G/GZ Integrated Graphics Controller [103c:302a]
Kernel modules: i915, intelfb
和
xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 1024 x 768, current 1024 x 768, maximum 1024 x 768
default connected primary 1024x768+0+0 0mm x 0mm
1024x768 76.00*
输出
$ cat /proc/cpuinfo | grep -w 'model name'
model name : Intel(R) Core(TM)2 Duo CPU E4500 @ 2.20GHz
输出sudo lshw -c display
*-display UNCLAIMED
description: VGA compatible controller
product: 82945G/GZ Integrated Graphics Controller
vendor: Intel Corporation
physical id: 2
bus info: pci@0000:00:02.0
version: 02
width: 32 bits
clock: 33MHz
capabilities: msi pm vga_controller bus_master cap_list
configuration: latency=0
resources: memory:e2000000-e207ffff ioport:c000(size=8) memory:d0000000-dfffffff memory:e2080000-e20bffff memory:c0000-dffff
该问题仅在安装后发生,而不是在我选择“尝试不安装”时发生,在这种情况下我不需要设置 nomodeset。
英特尔显卡更新工具显示:
Checking if Intel graphics card available...
• checking for i915 module in /sys/module
• i915 module found
Checking if Intel graphics card available... OK
Retrieving information from 01.org...
• fetching https://download.01.org/gfx/ilg-config.cfg
• saving to /home/garden/.ilg-config
• fetched 1626 bytes
• fetched 9818 bytes
• fetched 12301 bytes
• looking up [Ubuntu bionic] configuration
Retrieving information from 01.org... OK
Checking distribution... Failed
编辑:
我已经安装了xserver-xorg-video-intel
。xorg-dev
我尝试过acpi_osi=linux
,acpi_backlight=vendor
,noalpic
还i915.modeset=0
创建xorg.conf
文件并修改文件/etc/initramfs-tools/modules
以添加 i915 和 intel_agp 驱动程序,如上所述这里。
答案1
为了Ubuntu 18.04,为了解决这个问题,我已经在 GDM3 中禁用了 Wayland。
sudo vi /etc/gdm3/custom.conf
更改
#WaylandEnable=false
为WaylandEnable=false
并重新启动系统。
可以通过以下任一方式完成此操作,
- 选择恢复模式,从 grub 菜单中的高级选项中,进入 root shell 来修改文件
/etc/gdm3/custom.conf
。 - 设置 nomodeset登录后按照上述步骤操作即可。(我这里已经设置好了。)
- 使用实时 DVD 或可启动媒体:确保安装驱动器的路径
/media/ubuntu/XXX/etc/gdm3/custom.conf
可以通过以下方式找到:df -h
更新:
似乎这个错误已经固定的使用升级mutter
包,因此如果上述解决方案不起作用,请尝试升级mutter
包裹或安装Ubuntu 18.04.2或者如果您已经安装了 18.04,则使用 进行升级sudo apt update && sudo apt upgrade
。
如果安装了 Ubuntu 18.04.2,则无需禁用 Wayland。
答案2
我也遇到了同样的问题。我尝试在 Dell Latitude D620 上全新安装 Ubuntu 18.04,它从 USB 驱动器启动正常,但重启后只显示 ubuntu 徽标和鼠标光标,但系统没有响应 CTRL+F2/F3 或鼠标移动。
我的硬件:
lspci -nnk | grep -iA2 vga
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller [8086:27a2] (rev 03)
Subsystem: Dell Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller [1028:01c2]
Kernel driver in use: i915
因此,将nomodeset
/etc/default/grub 添加到系统后,系统便能够启动,但我的分辨率却被错误地设置为 1024x768,而不是 1280x800。所以这不是我想要的解决方案。
最后我找到了一个很好的解决方法:
sudo apt-get install lightdm
安装lightdm
为显示管理器而不是默认设置gdm3
解决了 Intel 945GM ( i915
) 和冻结的 ubuntu 徽标的问题。
PS:WLAN 也无法与集成的 Broadcom BCM4311 配合使用。
lspci -vnn | grep 14e4
09:00.0 Ethernet controller [0200]: Broadcom Limited NetXtreme BCM5752 Gigabit Ethernet PCI Express [14e4:1600] (rev 02)
0c:00.0 Network controller [0280]: Broadcom Limited BCM4311 802.11b/g WLAN [14e4:4311] (rev 01)
解决方案是安装 firmware-b43-installer (https://askubuntu.com/a/609420/127023)。
答案3
更新:在 lightdm+Gnome 崩溃后,我切换到了 Unity (*)
我在使用 i915 模块时遇到了同样的问题。在屏幕上出现光标后,启动时屏幕冻结。通过如上所述将 gdm 替换为 lightdm 解决了此问题。总结解决方案:
通过添加选项来启动
nomodeset
:a. 在启动前按住 SHIFT 查看 GRUB 菜单
b. 按下e
并添加nomodeset
该行
linux /boot,vmlinuz-.... root=UUID=... ro quiet splash nomodeset
,然后按 F10 重新启动。- 从低分辨率屏幕开始,得到上述结果。
- 安装 lightdm+unity 桌面并选择它作为默认。sudo
apt-get install lightdm; sudo apt-get install ubuntu-unity-desktop - 重启。
(*)来自 dmesg 的 i915 模块错误消息,会话被强制注销