Pages

Sunday, February 14, 2010

우분투 해상도 변경

출처 : http://ubuntu.or.kr/viewtopic.php?p=4363

usplash 가 해상도별로 그림을 가지고 있는데.
문제는 /etc/usplash.conf 에서 1280x1024 로 정의 하고 있어 그 해상도가 나옵니다.

해상도 수정법은
sudo gedit /etc/usplash.conf 해서 xres=1280 res=1024를 xres=1024 yres=768 로 변경 하신 후

$ sudo dpkg-reconfigure linux-image-$(uname -r) 하고 재부팅 하여 보시기 바랍니다.

/etc/X11/xorg.conf 에서
아래와 같은 것을....

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
Option "AddARGBGLXVisuals" "True"
Defaultdepth 24
EndSection

아래와 같이 변경함...

Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
Option "AddARGBGLXVisuals" "True"
Defaultdepth 24
SubSection "Display"
Modes "1024x768" <<<<<<<<<<<= 이런형식으로 원하는 해상도 하나만 적어보세요..
EndSubSection
EndSection

No comments: