You are not logged in.
Pages: 1
Hi all,I hava a Savage/IX card(IBM T20) and enable the dri,but it crashed when I start xorg.
Help!
Offline
the search button could be helpfull.
Frumpus ♥ addict
[mu'.krum.pus], [frum.pus]
Offline
Thanks for you reply!
I think the support to savage dri is unstable,so i disabled the dri.
Offline
It's not unstable, I used the devel version with Xorg 6.8.2 and it never once crashed on me. Umm, let's see... Could you post your xorg.conf file? That might be of some help.
Offline
I used xorg-11R7.0.
This is my xorg.conf file:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "DevInputMice" "AlwaysCore"
EndSection
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts"
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/cyrillic"
FontPath "/usr/share/fonts/Type1"
FontPath "/usr/share/fonts/TTF"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "xtt"
Load "type1"
# Load "dri"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "PS/2"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection
Section "InputDevice"
Identifier "DevInputMice"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Generic Laptop Display Panel 1024x768"
HorizSync 31.5 - 48.5
VertRefresh 40.0 - 70.0
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "savage"
VendorName "Videocard vendor"
BoardName "S3 Savage/IX"
VideoRam 8192
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 16
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
Offline
Group 0? Ah never mind, that should be users I think... I don't think it's necessary to specify the group though, in most cases.
Umm, let's see what else...
- Try commenting out HorizSync and VertRefresh, that stuff should be autodetected by DDC.
- Try adding, in the Display subsection of the Screen section:
Option "IgnoreEDID" "false"
Offline
remove the group 0 line from your Xorg.conf, as it is the root group.
[~/.config/blog]$ cat /etc/group|grep 0
root::0:root
wheel::10:root,iphitus
users::100:iphitus
(dont remove it from /etc/group)
Offline
remove the group 0 line from your Xorg.conf, as it is the root group.
[~/.config/blog]$ cat /etc/group|grep 0 root::0:root wheel::10:root,iphitus users::100:iphitus
(dont remove it from /etc/group)
I removed the group 0 line,but it crashed again.
Offline
I don't really know if it matters but in server layout you have:
Screen 0 "Screen0" 0 0
Should that be (?):
Screen "Screen0" 0 0
Offline
Nope.
Screen 0 "Screen0" 0 0
Offline
Pages: 1