我们办公室的显示器硬件显示可调节最大分辨率1920*1080
但是实际上在系统的setting中最大可调节为1024*768
(系统Ubuntu16.04)
解决方案:xrandr命令。
- 运行xrandr查看下分辨率的情况,其中*为正在使用的情况
lu@lu-ubuntu:~$ xrandr
Screen 0: minimum 320 x 200, current 1024 x 768, maximum 16384 x 16384
DisplayPort-0 disconnected (normal left inverted right x axis y axis)
DVI-0 connected primary 1024x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.00*
800x600 60.32 56.25
848x480 60.00
640x480 59.94
- 下面用cvt命令生成一个modeline,为后续添加分辨率作准备:
lu@lu-ubuntu:~$ cvt 1920 1080
# 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来创建一个分辨率模式,使用步骤2生成的“Modeline”后的内容:
(如果创建错了,用 --rmmode 删除这个模式)
lu@lu-ubuntu:~$ xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
-
接着,用xrandr --addmode把这个模式添加到DVI-0上:
(--delmode把这个模式从该显示器上移除)
lu@lu-ubuntu:~$ xrandr --addmode DVI-0 "1920x1080_60.00"
-
最后,应用这个模式:
lu@lu-ubuntu:~$ xrandr --output DVI-0 --mode "1920x1080_60.00"
- 补充
1)运行xrandr查看下分辨率的情况,其中1920x1080_60.00 59.96* 为正在使用的情况
lu@lu-ubuntu:~$ xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 16384 x 16384
DisplayPort-0 disconnected (normal left inverted right x axis y axis)
DVI-0 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1024x768 60.00
800x600 60.32 56.25
848x480 60.00
640x480 59.94
1920x1080_60.00 59.96*
lu@lu-ubuntu:~$
2)如果设置完后屏幕有偏移,直接在显示器(硬件)上调就可以了。
3)最后,想保持该分辨率的话,需要修改etc下面的profile文件,在终端中输入:
lu@lu-ubuntu:~$sudo gedit /etc/profile
进入编辑模式后,在最后添加如下命令,保存后sudo reboot
lu@lu-ubuntu:~$xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
lu@lu-ubuntu:~$xrandr --addmode DVI-0 "1920x1080_60.00"