: O. Yuanying

Parallels+ubuntuでフルスクリーン

MacBook Pro+Parallelsでubuntuをフルスクリーンで動かしてみたが、どうも画面解像度が1024x768以上に変更できない。そもそも、「システム」→「設定」→「画面の解像度」のメニューには「1024x768」か「800x600」、「640x480」しか設定が存在しない。

色々試した結果、「/etc/X11/xorg.conf」の「Monitor」と「Screen」を以下のように変更したら「1440x900」で表示できた。

#Section "Monitor"
#       Identifier      "Generic Monitor"
#       Option          "DPMS"
#       HorizSync       28-51
#       VertRefresh     43-60
#EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
        HorizSync    31.5 - 100.0
        VertRefresh  59.0 - 75.0
        Option      "dpms"
        Modeline "1440x900" 108.84 1440 1472 1800 1912 900 918 927 946
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Generic Video Card"
        #Monitor                "Generic Monitor"
        Monitor    "Monitor0"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1440x900"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1440x900"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1440x900"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1440x900"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1440x900"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1440x900"
        EndSubSection
EndSection