Vandaag heb ik een server opgebouwd, met de handleiding bij de hand die ik hier zelf heb geschreven. Helaas kreeg ik een memory foutmelding met het commando:
# Xorg -configure
en bij het start van X Windows:
# startx
Kreeg ik op meerdere monitoren te zien dat er een incompatible modus werd gebruikt die het beeldscherm niet ondersteund.
De grafische kaart die ik had gebruikt, had ik al een tijdje en heeft mijn voorliefde omdat het een PCI kaartje is, zodat ik al mijn PCI-Express sloten kan inzetten voor mijn geliefde RAID kaarten Perc H310, meer te lezen in artikel: https://www.bsd05.nl/index.php/start-hier?showall=&start=1
Dit is een foto van de kaart, beetje gehavend, maar werkt nog steeds prima.
Oplossing is:
Installeer X Windows met Mach64 drivers, en laat de detectie niet over aan devd, maar aan HAL, hiervoor heb je dan ook de 2 volgende regels nodig in het bestand: /etc/rc.conf
hald_anable="YES"
dbus_enable="YES'
Hierna kreeg ik wel beeld in X Windows, beetje gaar, maar goed, ik zal alleen wat virtuele machine's opzetten en deze voortaan headless starten via de ssh console, dus heb ik niet veel nodig.
Nog een dump van de xorg.conf file die ik gebruik in combinatie met de AtiRage kaart:
Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/share/fonts/misc/" FontPath "/usr/local/share/fonts/TTF/" FontPath "/usr/local/share/fonts/OTF/" FontPath "/usr/local/share/fonts/Type1/" FontPath "/usr/local/share/fonts/100dpi/" FontPath "/usr/local/share/fonts/75dpi/" EndSection Section "Module" Load "glx" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/sysmouse" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" #DisplaySize 530 290 # mm Identifier "Monitor0" VendorName "ACR" ModelName "V243HL" HorizSync 30.0 - 80.0 VertRefresh 55.0 - 75.0 Option "DPMS" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz", ### : "%" ### [arg]: arg optional #Option "probe_sparse" # [] #Option "accel" # [] #Option "crt_display" # [] #Option "composite_sync" # [] #Option "hw_cursor" # [] #Option "force_pci_mode" # [] #Option "dma_mode" # #Option "agp_mode" # #Option "agp_size" # #Option "local_textures" # [] #Option "buffer_size" # #Option "mmio_cache" # [] #Option "test_mmio_cache" # [] #Option "panel_display" # [] #Option "reference_clock" # #Option "shadow_fb" # [] #Option "sw_cursor" # [] #Option "AccelMethod" # #Option "RenderAccel" # [] Identifier "Card0" Driver "mach64" BusID "PCI:7:4:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 1 EndSubSection SubSection "Display" Viewport 0 0 Depth 4 EndSubSection SubSection "Display" Viewport 0 0 Depth 8 EndSubSection SubSection "Display" Viewport 0 0 Depth 15 EndSubSection SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection