水曜日, 11月 26, 2008

Fedoraのディスプレイ

Fedora 9 のディスプレイ設定
  1. GNOME:システム⇒管理⇒ディスプレイ(/usr/bin/system-config-display)
  2. KDE:管理⇒ディスプレイ(/usr/bin/system-config-display)


Fedora 10にxorg.congが使われていなかったので、設定の仕方はここに参考しています。

Topic: Problem with Fedora 10 on VirtualBox

The answer from axel is as follows


vamos you must create an xorg.conf file which isn't used be Fedora 10 since it uses the latest Xorg 1.5. To do so type in a terminal:

su -
yum install system-config-display
system-config-display

Here go to the Hardware tab and select the vboxvideo driver. Of course you must have vbox additions installed, which you said you have. Wink Press OK two times to save the changes and reboot Fedora.

Now type again

su -c 'system-config-display'

and check if there are other screen resolutions available. If there aren't you must manually add them in xorg.conf like this

su -c 'gedit /etc/X11/xorg.conf'

Here paste the following text. In Modes you can put the resolutions you want.

Code:
# Xorg configuration created by system-config-display

Section "ServerLayout"

# InputDevice "Keyboard0" "CoreKeyboard"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
EndSection

Section "Monitor"
Identifier "Monitor0"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "vboxvideo"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768"
EndSubSection
EndSection

0 件のコメント: