Ubuntu 18.04.1 LTS 无法更改分辨率

Ubuntu 18.04.1 LTS 无法更改分辨率

我正在使用 Ubuntu 18.04.1 LTS(2 天前从 16 更新)。分辨率很好,但意外地更改为 1024x768(4:3),每次我尝试更改为 1920x1080(或任何其他尺寸)时,它都不被接受并返回到 1024x768(4:3)。

应用更改?显示设置

选择分辨率

保留更改弹出窗口

尝试了几次,重启了电脑,但没有应用任何更改。请帮忙:)

现有决议:

终端屏幕截图显示最大分辨率为 1920x1080

答案1

检查是否“无模式设置”已添加到 grub 中。(就像我的情况一样)

/etc/default/grub

如果是,则删除。

保存文件后运行命令

sudo update-grub

并重启系统

答案2

首先检查你的监控代码

echo $DISPLAY

检查您的设备代码

sudo lspci |grep -i vga

我通过配置 xorg 解决了这个问题,解决方案是在中创建配置文件/etc/X11/xorg.conf.d/10-monitor.conf

10-monitor.conf 应该包含如下配置:

Section "Monitor"

    Identifier  "Monitor0"`

EndSection

Section "Device"

    Identifier  "Device0"`

    Driver      "radeon" 

EndSection

Section "Screen"

    Identifier "Screen0"  #Collapse Monitor and Device section to Screen section
    Device                 "Device0"
    Monitor                "Monitor0"
    SubSection             "Display"
        Depth              16
        Modes              "1920x1080_60.00" #Choose the resolution
EndSubSection

EndSection

祝你好运

答案3

您可以在访客终端尝试此操作:

sudo apt-get update

sudo apt-get install open-vm-tools-desktop

https://communities.vmware.com/message/2567255#2567255

答案4

我也遇到过这种情况。我想怎么会没有任何更新或更改?然后检查了电缆,结果果然如此。它恢复了正常分辨率。

相关内容