OK, I looked at your logs, and I don't know enough to tell you what's wrong. The only reason I'm answering is because I've got a Dell with a 1.7GHz Celeron and the same chipset. The xorg.conf I'm using was generated with
- Code: Select all
Xorg -configure
and then I added the monitor frequencies and resolutions I wanted. At least that's what I think I did. Maybe if you tell xorg what hardware you have, instead of letting it guess, it'll make a difference. But that's just a guess.
Mine works fine. I couldn't remember if I ever used the default xorg.conf with it, so I tried it, and it seems to work. Now that I think about it some more, maybe it didn't work with the first monitor (15" eMachine LCD), and that's why I made a new one, and then I added frequencies and the 1600x1400 resolution for the replacement monitor (IBM 21" CRT).
Other things that come to mind for diagnosing lockup are testing memory and power supply.
Here's the xorg.conf I was using for comparison. Don't use my monitor frequencies unless you know they're right for yours.
- Code: Select all
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/etc/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/cyrillic"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection
Section "Module"
Load "record"
Load "extmod"
Load "xtrap"
Load "GLcore"
Load "dri"
Load "glx"
Load "dbe"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
#DisplaySize 300 230 # mm
Identifier "Monitor0"
VendorName "TAT"
ModelName "E15TG"
### Comment all HorizSync and VertRefresh values to use DDC:
# HorizSync 31.0 - 60.0
# VertRefresh 60.0 - 75.0
# IBM P275
HorizSync 30 - 130
VertRefresh 48 - 170
Option "DPMS"
EndSection
Section "Device"
### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "NoAccel" # [<bool>]
#Option "SWcursor" # [<bool>]
#Option "ColorKey" # <i>
#Option "CacheLines" # <i>
#Option "Dac6Bit" # [<bool>]
#Option "DRI" # [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "XvMCSurfaces" # <i>
#Option "PageFlip" # [<bool>]
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device"
BusID "PCI:0:2: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
Modes "1600x1400" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection