How to fix a few errors in Xorg with vboxvideo and dri
Posted: 12. Aug 2009, 00:03
Hi,
I just noticed that I have a few errors when I launch Xorg with startx. The errors are as follows:
And my xorg.conf file:
I tried to comment the Load "dri" line as with the whole Section "DRI" thing at the bottom which seem related to some of the errors, but it didn't work. I don't get those errors because X starts fine and I can play with it and GNOME. Still, I would like to fix those errors, something's not right...
What should I do?
I just noticed that I have a few errors when I launch Xorg with startx. The errors are as follows:
Code: Select all
FATAL: module vboxvideo not found.
(EE) [drm] drmOpen failed.
(EE) VBoxVideo(0): DRIScreenInit failed, disabling DRI.Code: Select all
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Default Screen" 0 0
InputDevice "Generic Keyboard" "CoreKeyboard"
InputDevice "Generic Mouse" "CorePointer"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc:unscaled"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/75dpi"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/100dpi"
FontPath "/usr/share/fonts/PEX"
FontPath "/usr/share/fonts/cyrillic"
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/ttf/western"
FontPath "/usr/share/fonts/ttf/decoratives"
FontPath "/usr/share/fonts/truetype"
FontPath "/usr/share/fonts/truetype/openoffice"
FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
FontPath "/usr/share/fonts/latex-ttf-fonts"
FontPath "/usr/share/fonts/defoma/CID"
FontPath "/usr/share/fonts/defoma/TrueType"
EndSection
Section "Module"
Load "ddc"
Load "dbe"
Load "dri"
Load "extmod"
Load "glx"
Load "bitmap"
EndSection
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
EndSection
Section "InputDevice"
Identifier "Generic Mouse"
Driver "vboxmouse"
Option "CorePointer"
Option "ZAxisMapping" "4 5"
Option "Device" "/dev/input/mice"
Option "Protocol" "IMPS/2"
Option "Emulate3Buttons" "true"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS" "true"
HorizSync 28.0 - 60.0
VertRefresh 43.0 - 60.0
EndSection
Section "Device"
Identifier "Generic Card"
Driver "vboxvideo"
VendorName "InnoTek Systemberatung GmbH"
BoardName "VirtualBox Graphics Adapter"
BusID "PCI:0:2:0"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Generic Card"
Monitor "Generic Monitor"
DefaultColorDepth 24
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "DRI"
Mode 0666
EndSection
What should I do?