본문 바로가기

Computer Engineering/Tools & Tip

VMware 해상도 변경 방법

VMware 해상도 변경 방법


Step 1: Install X and GNOME, if not already present.

[root@localhost ~]# yum groupinstall "X Window System" "GNOME Desktop Environment"

[Note: to install KDE, substitute the “GNOME…” string with “KDE (K Desktop Environment)”]



Step 2: Edit /etc/X11/xorg.conf

"/etc/X11/xorg.conf" 파일 내용 중에 이미 존재하고 있는

Section "Device"
	Identifier  "Videocard0"
	Driver      "vmware"
EndSection

"Device" Section 부분 뒤에

Section "Monitor"
	Identifier   "Monitor0"
	HorizSync    1.0 - 10000.0
	VertRefresh  1.0 - 10000.0
EndSection

를 삽입한다. 그리고 나서 "Screen" Section을 다음과 같이 수정해 준다.

[Note: to replace the following “1600×1200″ string with the highest resolution your monitor can handle.]

Section "Screen"
	Identifier "Screen0"
	Device "Videocard0"
	Monitor "Monitor0"
	DefaultDepth 24
	SubSection "Display"
		Viewport 0 0
		Depth 24
		Modes "1600x1200" "800x600" "640x480"
	EndSubSection
EndSection



Step 3: Start X

다음과 같은 명령어로 X를 실행시켜 준다.

[root@localhost ~]# startx