博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vmware下Ubuntu屏幕分辨率设置
阅读量:4944 次
发布时间:2019-06-11

本文共 2217 字,大约阅读时间需要 7 分钟。

1.查看现有设备

xrandr -q

输出如下:

Screen 0: minimum 1 x 1, current 800 x 600, maximum 8192 x 8192Virtual1 connected primary 800x600+0+0 (normal left inverted right x axis y axis) 0mm x 0mm   800x600       60.00*+  60.32     2560x1600     59.99     1920x1440     60.00     1856x1392     60.00     1792x1344     60.00     1920x1200     59.88     1600x1200     60.00     1680x1050     59.95     1400x1050     59.98     1280x1024     60.02     1440x900      59.89     1280x960      60.00     1360x768      60.02     1280x800      59.81     1152x864      75.00     1280x768      59.87     1024x768      60.00     640x480       59.94  Virtual2 disconnected (normal left inverted right x axis y axis)Virtual3 disconnected (normal left inverted right x axis y axis)Virtual4 disconnected (normal left inverted right x axis y axis)Virtual5 disconnected (normal left inverted right x axis y axis)Virtual6 disconnected (normal left inverted right x axis y axis)Virtual7 disconnected (normal left inverted right x axis y axis)Virtual8 disconnected (normal left inverted right x axis y axis)

  

 目前正在使用的显示器为Virtual1,针对具体屏幕的分辨率设置可以使用下面这个命令。这里Virtual1替换为你的显示器名称

xrandr --output Virtual1 --auto --left-of CRT1

2.创建分辨率

cvt 1280 1024 60

 输出:

1280x1024 59.89 Hz (CVT 1.31M4) hsync: 63.67 kHz; pclk: 109.00 MHzModeline "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync

3.新增分辨率至分辨率列表中  

xrandr --newmode "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync

4.查看新添加的分辨率

xrandr

输出:

Screen 0: minimum 64 x 64, current 1280 x 960, maximum 16384 x 16384Virtual1 connected 1280x960+0+0 0mm x 0mm   1024x768       60.0 +   60.0     1600x1200      60.0     1440x1050      60.0     1280x960       60.0*    800x600        60.0     640x480        60.0    1280x1024_60.00 (0x14d)  109.0MHz        h: width  1280 start 1368 end 1496 total 1712 skew    0 clock   63.7KHz        v: height 1024 start 1027 end 1034 total 1063           clock   59.9Hz

5.添加分辨率至当前正在使用的显示器

xrandr --addmode Virtual1 "1280x1024_60.00"

6.使用新添加的分辨率

xrandr -s 1280x1024_60.00

7.持久地记忆这个新添加的分辨率

在~/.xprofile中加入下面语句:

xrandr --output Virtual1 --mode 1280x1024_60.00

  

 

  

  

 

  

转载于:https://www.cnblogs.com/hester/p/10327781.html

你可能感兴趣的文章
网络虚拟化我眼中的OpenFlow
查看>>
[leetcode] 3. Longest Substring Without Repeating Characters
查看>>
06 Frequently Asked Questions (FAQ) 常见问题解答 (常见问题)
查看>>
获取判断IE版本 TypeError: Cannot read property 'msie' of undefined
查看>>
tcpreplay安装使用
查看>>
自增锁
查看>>
ps命令学习
查看>>
关于proteus仿真的串口问题
查看>>
[NOI2018] 归程 可持久化并查集
查看>>
无论怎样,拒绝了
查看>>
Discuz API的延伸
查看>>
C/C++(C++内存管理,内联函数,类型转换,命名空间,string类)
查看>>
【NOIP2015】斗地主
查看>>
uva 10537 Toll! Revisited(优先队列优化dijstra及变形)
查看>>
MySQL对时间的处理总结
查看>>
笔记四:python乱码深度剖析二
查看>>
《PHP程序员面试笔试宝典》——如何回答技术性的问题?
查看>>
【转载】Amit’s A star Page 中译文
查看>>
注册谷歌账号并验证时显示号码无法用于验证的问题
查看>>
Hive 变量和属性
查看>>