|
|
Rivi 134: |
Rivi 134: |
| [[Luokka:Ohjeet]] | | [[Luokka:Ohjeet]] |
| [[Luokka:Työpöytä]] | | [[Luokka:Työpöytä]] |
|
| |
|
| |
| == Radeon (Xinerama) kahdella näytöllä==
| |
| xorg.conf tiedostoon tarvitsee luoda kaksi laitetta joita aijotaan käyttää virtuaali näytöissä. Tässä esimerkissä molemmat ulosotot löytyvät samasta kortista. Molemmille laiteille annetaan myös niiden ruutunumero "Screen".
| |
|
| |
| Section "Device"
| |
| Identifier "Videocard0"
| |
| Driver "radeon"
| |
| VendorName "Videocard vendor"
| |
| BoardName "ATI Technologies Inc RV350 AP [Radeon 9600]"
| |
| BusID "PCI:3:0:0"
| |
| Screen 0
| |
| EndSection
| |
|
| |
| Section "Device"
| |
| Identifier "Videocard1"
| |
| Driver "radeon"
| |
| VendorName "Videocard Vendor"
| |
| BoardName "ATI Technologies Inc RV350 AP [Radeon 9600]"
| |
| BusID "PCI:3:0:0"
| |
| Screen 1
| |
|
| |
| Seuraavaksi määrittele tietokoneeseesi kytkemät näytöt. Suosittelen näyden generic ajureiden tilalla köyttämään juuri sinun näytöillesi sopivia tietoja.
| |
|
| |
| Section "Monitor"
| |
| Identifier "Main Monitor"
| |
| Option "DPMS"
| |
| HorizSync 28-51
| |
| VertRefresh 43-60
| |
| EndSection
| |
|
| |
| Section "Monitor"
| |
| Identifier "Second Monitor"
| |
| Option "DPMS"
| |
| HorizSync 28-51
| |
| VertRefresh 43-60
| |
| EndSection
| |
|
| |
| Seuraavaksi määritellään myös Screen osio. Screen osioon tulee myös määritykset kahdelle Screenille.
| |
|
| |
| Screen yksi.
| |
|
| |
| Section "Screen"
| |
| Identifier "Screen0"
| |
| Device "Videocard0"
| |
| Monitor "Main monitor"
| |
| DefaultDepth 24
| |
| SubSection "Display"
| |
| Viewport 0 0
| |
| Depth 16
| |
| Modes "800x600" "640x480"
| |
| EndSubSection
| |
| SubSection "Display"
| |
| Viewport 0 0
| |
| Depth 24
| |
| Modes "1024x768" "800x600" "640x480"
| |
| EndSubSection
| |
| EndSection
| |
|
| |
| Ja Screen kaksi.
| |
|
| |
| Section "Screen"
| |
| Identifier "Screen1"
| |
| Device "Videocard1"
| |
| Monitor "Second Monitor"
| |
| DefaultDepth 24
| |
| SubSection "Display"
| |
| Viewport 0 0
| |
| Depth 24
| |
| Modes "1024x768" "800x600" "640x480"
| |
| EndSubSection
| |
| EndSection
| |
|
| |
|
| |
| Lopuksi lisää vielä ennen "ServeLayout" osaa seuraavat rivit. Itse "ServerLayout" kohdasta voit vaikkapa kommentoida (#-kommenttimerkki) pois Xinema rivin.
| |
|
| |
| Section "ServerFlags"
| |
| Option "Xinerama" "on"
| |
| EndSection
| |
|
| |
| "ServeLayout"-rivit
| |
|
| |
| Section "ServerLayout"
| |
| Identifier "Multihead layout"
| |
| Screen 0 "Screen0"
| |
| Screen 1 "Screen1" RightOf "Screen0"
| |
| InputDevice "Mouse0" "CorePointer"
| |
| InputDevice "Keyboard0" "CoreKeyboard"
| |
| # Option "Xinerama" "on"
| |
| # Option "Clone" "off"
| |
| EndSection
| |
|
| |
|
| |
| Lopuksi käynnistä X-systeemi uudestaan. (Esim. reboot)
| |