리눅스 해상도 잡기 , vmware 기준


리눅스 해상도 잡기 , vmware 기준

웹서핑을 통해서 나름 잡았네요..  
아래는

1280x1024 기준의 설정파일입니다   참고하세요.




[root@server1 ~]# cat /etc/X11/xorg.conf

# Xorg configuration created by system-config-display

Section "ServerLayout"
        Identifier     "single head configuration"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "XWorkAround"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us"
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    "1280x1024"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
                Modes    "1280x1024"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
                Modes    "1280x1024"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes    "1280x1024" "1280x960" "1280x800" "1152x864" "1152x768" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

[root@server1 ~]#