четвер, 8 травня 2008 р.

Dual Head для Відеокарт ATI на комерційних драйверах Fglrx в Linux

Для Fedora Core дуже зручно використовувати менеджер пакунків yum
Зпочатку встановіть yum-kmod розшорення а потім kmod-fglrx - комерційний ATI модуль ядра.

sudo yum install yum-kmod
sudo yum install kmod-fglrx

Всі комерційні драйвера доступні тільки з livna репозиторію.

Далі за допомогою livna-display-config графічної утиліти налаштовуємо що потрібно, зберігаємося, виконуємо 2 команди :
su -
aticonfig --dtop=horizontal --overlay-on=1
aticonfig --desktop-setup=horizontal
і перезавантажуємо графічне середовище (може вистачити logout).

Мій /etc/X11/xorg.conf
 
# Xorg configuration created by system-config-display

Section "ServerLayout"
    Identifier     "Multihead layout"
    Screen      0  "Screen0" LeftOf "Screen1"
    InputDevice    "Keyboard0" "CoreKeyboard"
    Option        "Xinerama" "on"
    Option        "Clone" "off"
EndSection

Section "Files"
    ModulePath   "/usr/lib/xorg/modules/extensions/nvidia"
    ModulePath   "/usr/lib/xorg/modules"
EndSection

Section "Module"
EndSection

Section "ServerFlags"
    Option        "AIGLX" "on"
EndSection

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

Section "Monitor"
    Identifier   "Monitor0"
    ModelName    "LCD Panel 1280x1024"
    HorizSync    31.5 - 64.0
    VertRefresh  56.0 - 65.0
    Option        "dpms"
EndSection

Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "Monitor Vendor"
    ModelName    "LCD Panel 1280x1024"
    HorizSync    31.5 - 64.0
    VertRefresh  56.0 - 65.0
    Option        "dpms"
EndSection

Section "Device"
    Identifier  "Videocard0"
    Driver      "fglrx"
    Option        "AddARGBGLXVisuals" "True"
    Option        "OpenGLOverlay" "off"
    Option        "VideoOverlay" "on"
    Option        "DesktopSetup" "horizontal"
    Option        "OverlayOnCRTC2" "1"
EndSection

Section "Device"
    Identifier  "Videocard1"
    Driver      "fglrx"
    Option        "AddARGBGLXVisuals" "True"
    Option        "OpenGLOverlay" "off"
    Option        "VideoOverlay" "on"
    Option        "DesktopSetup" "horizontal"
    Option        "OverlayOnCRTC2" "1"
    BoardName   "ATI Technologies Inc RV370 secondary [Sapphire X550 Silent]"
    BusID       "PCI:1:0:1"
    Screen      1
EndSection

Section "Screen"
    Identifier "Screen0"
    Device     "Videocard0"
    Monitor    "Monitor0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x1024" "1280x960" "1280x768" "1152x864" "1024x768" "800x600" "640x480" "640x400"
    EndSubSection
EndSection

Section "Screen"
    Identifier "Screen1"
    Device     "Videocard1"
    Monitor    "Monitor1"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Depth     24
        Modes    "1280x1024"
    EndSubSection
EndSection

Section "Extensions"
    Option        "Composite" "Enable"
EndSection


Шкода тільки що 3D ефекти Compiz  не запрацювали нормально.

Немає коментарів:

Дописати коментар