我有一块 NVidia 960M 显卡,我的笔记本电脑的原始分辨率为 1920x1080。但xrandr
显示的最大分辨率为 960x540,
lspci | grep VGA
仅显示
VGA compatible controller: Intel Corporation HD Graphics 530 (rev 06)
我该怎么做才能获得最大分辨率?
答案1
为了修复它我这样做了:
使用 gtf 创建模式行
>>> gtf 1920 1080 60
# 1440x900 @ 59.90 Hz (GTF) hsync: 55.83 kHz; pclk: 106.29 MHz
Modeline "1440x900_59.90" 106.29 1440 1520 1672 1904 900 901 904 932 -HSync +Vsync
找到你的显示名称,我的是 eDP-1,如果你使用显示器,你的可能是 HDMI-1
>>> xrandr --display
eDP-1 connected (normal left inverted right x axis y axis)
>>> xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
>>> xrandr --addmode eDP-1 1920x1080_60.00