KevinG 16,898 posts since
Jan 8, 2004
Reply
14.
Re: VMware Tools problem - Screen resolution only 800x600 - CentOS 5 May 1, 2007 7:26 AM

in response to:
spdivr
My mouse moves freely between the host(Windows XP) and (CentOS 5)guest OS and NO vmware-toolbox is running.
The real solution is to use a correctly modified xorg.conf file and the correct mouse driver loaded.
It's the mouse driver that handles the grab & ungrab, the vmware-toolbox process handles the copy / paste
[code]
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "XWorkAround"
InputDevice "Mouse[0]" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Mouse[0]"
Driver "vmmouse"
Option "Device" "/dev/input/mice"
Option "Name" "VMware Point Device"
EndSection
Section "InputDevice"
Identifier "XWorkAround"
Driver "void"
EndSection
Section "Monitor"
Identifier "vmware"
VendorName "VMware, Inc"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 1.0 - 10000.0
VertRefresh 1.0 - 10000.0
EndSection
Section "Device"
Identifier "VMware SVGA"
Driver "vmware"
EndSection
Section "Screen"
# Don't specify DefaultColorDepth unless you know what you're
# doing. It will override the driver's preferences which can
# cause the X server not to run if the host doesn't support the
# depth.
Identifier "Screen0"
Device "VMware SVGA"
Monitor "vmware"
DefaultDepth 24
SubSection "Display"
# VGA mode: better left untouched
Viewport 0 0
Depth 4
Modes "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
Modes "1024x768"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
Modes "1024x768"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1024x768"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "832x624" "800x600" "720x400" "640x480" "640x400" "640x350"
EndSubSection
EndSection
[/code]
Message was edited by:
KevinG
Message was edited by:
KevinG
Message was edited by:
KevinG