본문 바로가기

Linux

가상화(vmware,virtualbox)에 centos 설치시 해상도 설정

320x100

가상화에 centos 띄우면 해상도가 한정해상도만 지원한다.



# vi /etc/X11/xorg.conf  

Section "Device"

Identifier "Videocard0"

Driver "vesa"

EndSection


Section "Monitor"

Identifier "Monitor0"

HorizSync 1.0 - 10000.0

VertRefresh 1.0 - 10000.0

EndSection


Section "Screen"

Identifier "Screen0"

Device "Videocard0"

Monitor "Monitor0"

DefaultDepth 24

SubSection "Display"

Viewport 0 0

Depth 24

Modes "1600x1200""1280x1024" "1024x768"

EndSubSection

EndSection


위와 같이 수정해주자



이제 해상도를 여러가지 선택할수 있게 됐다.



320x100