我在我的第二台笔记本电脑上安装了 ubuntu。我有一台通过 VGA 连接的 19 英寸屏幕 LG W40 系列。最大分辨率为 1024x768 在其他发行版上,它可以在全高清分辨率下正常工作。请帮忙 - ubuntu 20.04
答案1
在终端上尝试一下:
~$ cvt 1920 1080 (# or whatever you want as your resolution.)
(#Copy what is after the word Modeline)
# 1920x1080 59.96 Hz (CVT 2.07M9) hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
~$ xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync (# paste what is after the word Modeline)
~$ xrandr --addmode XWAYLAND1 "1920x1080_60.00"
~$ xrandr --output XWAYLAND1 --mode "1920x1080_60.00" (# Instead of XWAYLAND1 use the name of your monitor)
~$
就是这样