答案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
答案4
我也遇到过这种情况。我想怎么会没有任何更新或更改?然后检查了电缆,结果果然如此。它恢复了正常分辨率。