我如何才能永久改变我的上网本屏幕分辨率?
xrandr
这是命令后的屏幕
Screen 0: minimum 320 x 200, current 1024 x 600, maximum 4096 x 4096
VGA-0 disconnected (normal left inverted right x axis y axis)
LVDS-0 connected primary 1024x600+0+0 (normal left inverted right x axis y axis) 222mm x 125mm
1024x600 60.0*+
960x600 60.0
960x540 60.0
800x600 60.0 60.3 56.2
840x525 60.0 59.9
800x512 60.2
700x525 60.0
640x512 60.0
720x450 59.9
640x480 60.0 59.9
680x384 59.8 60.0
576x432 60.1
512x384 60.0
400x300 60.3 56.3
320x240 60.1
DVI-0 disconnected (normal left inverted right x axis y axis)
DisplayPort-0 disconnected (normal left inverted right x axis y axis)
1024x768_60.00 (0x19c) 63.5MHz
h: width 1024 start 1072 end 1176 total 1328 skew 0 clock 47.8KHz
v: height 768 start 771 end 775 total 798 clock 59.9Hz
答案1
只需输入 xrandr,这将列出所有可用的显示器和可能的模式/分辨率。您将在当前使用的模式上看到一个星号 (*)。例如:
>xrandr
Screen 0: minimum 320 x 200, current 2720 x 1024, maximum 8192 x 8192
VGA-0 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 340mm x 270mm
1280x1024 60.02 + 75.02*
1024x768 75.08 70.07 60.00
800x600 75.00 60.32
640x480 75.00 60.00
720x400 70.08
HDMI-0 connected primary 1440x900+1280+124 (normal left inverted right x axis y axis) 477mm x 268mm
1920x1080 60.00 +
1280x1024 60.02
1440x900 59.90*
1280x800 59.91
1152x864 75.00
1024x768 70.07 60.00
800x600 60.32 56.25
640x480 66.67 60.00
720x400 70.08
要更改它,只需输入:
xrandr --output HDMI-0 --mode 1920x900
这会将我的第二台显示器(通过 HDMI 端口连接)更改为新的分辨率。
您可以设置更多参数,例如频率等。查看更多详细信息xrandr --help
答案2
使用此命令:
gksudo -k gedit /etc/gdm/Init/Default
将以下脚本添加到显示管理器默认初始化配置文件中:
xrandr --newmode "1600x900" 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync
xrandr --addmode VGA1 1600x900
xrandr --output VGA1 --mode 1600x900
模式详细信息可以从无级变速器命令
cvt -v 1440 900
其中 1440 是屏幕宽度,900 是屏幕高度。您可以从笔记本电脑数据表/制造商网站获取屏幕分辨率尺寸。有关更多详细信息,请查看此博客文章