본문 바로가기
Binary Life/펭귄

우분투 해상도 수동 추가

by 로제마인 2014. 5. 6.

http://askubuntu.com/questions/138408/how-to-add-display-resolution-fo-an-lcd-in-ubuntu-12-04-xrandr-problem


You can add missing resolutions to Ubuntu 12.04 using xrandr.

First, use cvt to create a new resolution mode.

sudo cvt 1920 1080 60

Part of the output should be similar to this: "Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync" (w/o the quotes).

Next, declare a new resolution mode.

sudo xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync

Next, find out the name of your video device.

sudo xrandr -q

Mine was named "Virtual1" (running a virtual machine). Once you know the name of your device, you can, finally, add your new resolution mode to the device/system.

sudo xrandr --addmode Virtual1 1920x1080_60.00

See more information in the "Adding undetected resolutions" section here:https://wiki.ubuntu.com/X/Config/Resolution/#Adding_undetected_resolutions

shareimprove this answer



신기한 커맨드들;

'Binary Life > 펭귄' 카테고리의 다른 글

[작성중/메모] coredump  (0) 2012.07.05
bash shell coloring  (0) 2012.05.31
*nix commands  (0) 2012.01.12
[UBUNTU] ATI 에서 부팅 등 화면 깨질 때.  (0) 2011.04.25
오랜만에 ubuntu  (2) 2009.03.10