<![CDATA[Latest posts for the topic "Điều chỉnh resolution trong Fedora Core 6"]]> /hvaonline/posts/list/24.html JForum - http://www.jforum.net Điều chỉnh resolution trong Fedora Core 6 /hvaonline/posts/list/5085.html#29872 /hvaonline/posts/list/5085.html#29872 GMT Re: Điều chỉnh resolution trong Fedora Core 6 http://www.linuxforums.org/forum/redhat-fedora-linux-help/76987-fc6-installation-change-default-display-resolution-800x600.html. Có vấn đề gì khác bạn có thể post lên tiếp :). Thân.]]> /hvaonline/posts/list/5085.html#29943 /hvaonline/posts/list/5085.html#29943 GMT Re: Điều chỉnh resolution trong Fedora Core 6 Code:
#system-config-display
để mà chỉnh resolution thì không ăn thua gì cả. Tui chỉnh lại file /etc/X11/xorg.conf : Nội dung ban đầu thế này : Code:
# 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"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "i810"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes     "1600x1200" "1600x1024" "1440x900" "1400x1050" "1280x1024" "1280x960" "1280x800" "1152x864" "1152x768" "1024x768" "1024x768" "800x600" "800x600" "640x480" "640x480"
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
                Modes    "1600x1200" "1600x1024" "1440x900" "1400x1050" "1280x1024" "1280x960" "1280x800" "1152x864" "1152x768" "1024x768" "800x600" "800x600" "640x480" "640x480"
        EndSubSection
EndSection
Giá trị resolution ở đầu dòng modes sẽ là default resolution của FC6 khi login. Dùng vi để chỉnh sửa etc/X11/xorg.conf : ở Section "Screen", dòng Modes xóa các giá trị thừa để nó bắt đầu bằng giá trị mình muốn đặt, ở đây tui muốn đặt resolution là 1027x768 nên để nó bắt đầu bằng "1024x768" : Code:
Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes     "1024x768" "1024x768" "800x600" "800x600" "640x480" "640x480"
        EndSubSection
Save lại rồi reboot. Vậy là giải qyết được. :D) Nói chung vấn đề đã giải quyết xong, nhưng tui không hiểu FC6 sinh ra cái điều chỉnh chế độ display bằng Code:
#system-config-display
để làm gì khi mà nó không có tác dụng, tức là không chỉnh được cái gì hết ??? :roll: ]]>
/hvaonline/posts/list/5085.html#30003 /hvaonline/posts/list/5085.html#30003 GMT
Re: Điều chỉnh resolution trong Fedora Core 6

8x80 wrote:
Nói chung vấn đề đã giải quyết xong, nhưng tui không hiểu FC6 sinh ra cái điều chỉnh chế độ display bằng Code:
#system-config-display
để làm gì khi mà nó không có tác dụng, tức là không chỉnh được cái gì hết ??? :roll:  
Có những người cũng bị như bác chứng tỏ đó là vấn đề của FC6 rồi :mrgreen: Theo như tui suy đoán thì có thể do thằng system-config-display không có quyền chỉnh file xorg.conf nên mới dẫn đến tính trạng đó. Bác thử set cho thằng system-config-display quyền SUID, sau đó thử chỉnh bằng nó xem sao: Code:
su -c 'chmod +s system-config-display'
]]>
/hvaonline/posts/list/5085.html#30186 /hvaonline/posts/list/5085.html#30186 GMT