解像度の変更

X Window Systemのデフォルトの解像度は低く設定されているため、解像度を高くします。
まず、/etc/X11/xorg.confを編集します。以下は、解像度を1024x768から1440x900(ワイド)に上げる例です。

[/etc/X11/xorg.conf]
(snip)
Section "Monitor"
(snip)
        HorizSync       1.0-10000.0
        VertRefresh     1.0-10000.0
EndSection

Section "Screen"
(snip)
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1440x900" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1440x900" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1440x900" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1440x900" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1440x900" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1440x900" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

編集後、KDEを起動します。