Dell Inspiron Mini 1010 (简体中文)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
强烈建议在安装 Arch Linux 之前升级 BIOS。
怪癖
挂起
挂起是 Intel SpeedStep 引起的问题。在 BIOS 中禁用它可以解决此问题,但也不允许 CPU 扩展。下面的解决方案似乎可以在不禁用 speed step 的情况下工作。将此挂起脚本添加到 /etc/pm/sleep.d/00-dell-quirks.conf
/etc/pm/sleep.d/00-dell-quirks.conf
#!/bin/sh # intel speedstep 挂起解决方法 . "${PM_FUNCTIONS}" case "$1" in hibernate|suspend) for i in /sys/devices/system/cpu/cpu*/online ; do echo 0 >$i done ;; thaw|resume) sleep 10 # run with one core for 10 secs for i in /sys/devices/system/cpu/cpu*/online ; do echo 1 >$i done ;; *) ;; esac
并为其赋予可执行权限:
# chmod +x /etc/pm/sleep.d/00-dell-quirks.conf
也可能可以通过更新 BIOS 来解决挂起问题。此修复方法已在 BIOS A07 上进行了测试。