Ubuntu设置分辨率1920x1080
有时候,因为未知原因,ubuntu的“设置->分辨率”中找不到想要的分辨率,例如1920x1080,可以通过以下方法设置。
既有的方法直接在/etc/profile中加入xrandr命令,可以解决问题,但是会导致新开的teminal中报如下警告:
X Error of failed request: BadName (named color or font does not exist)
Major opcode of failed request: 141 (RANDR)
Minor opcode of failed request: 16 (RRCreateMode)
Serial number of failed request: 55
Current serial number in output stream: 55
修改后的方法为,编辑 /etc/profile , 在文件末尾加入:
string=`xrandr`
if [[ $string != *"1920x1080_60.00"* ]]; then
xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
fi
xrandr --addmode Virtual1 "1920x1080_60.00"
其中,"1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
来自 cvt 1920 1080 命令
然后命令行运行: