分辨率停留在 1024x768

分辨率停留在 1024x768

为了修复启动画面的一些小问题,我运行了以下脚本:http://www.webupd8.org/2010/10/script-to-fix-ubuntu-plymouth-for.html

大错特错。我的分辨率现在卡在 1024x768(屏幕是 1280x900)。我无法通过监视器设置更改它,要么是那里有很多旧指南,要么是我的 Xorg 配置不存在。我尝试运行“修复脚本”的清理版本,但没有任何变化。哦,图形设置也突然降到了最低。

我也尝试了各种方法dpkg --reconfigures,但都没有成功。

alexander@natty:~$ xrandr 
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 800 x 600, current 1024 x 768, maximum 1024 x 768
default connected 1024x768+0+0 0mm x 0mm
   1024x768       61.0* 
   800x600        61.0 

答案1

此脚本的作用:

  1. /etc/default/grub

    1. 代替

      GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

      GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset video=uvesafb:mode_option='$resolution',mtrr=3,scroll=ywrap"

    2. 设置 GRUB_GFXMODE=$分辨率
  2. /etc/initramfs-tools/modules
    1. 添加uvesafb mode_option=$resolution mtrr=3 scroll=ywrap
  3. /etc/initramfs-tools/conf.d/splash
    1. 添加FRAMEBUFFER=y

逆转它实际执行的操作,然后执行以下操作:

 sudo update-grub2
 sudo update-initramfs -u

相关内容