You are not logged in.
Pages: 1
Any fixes?
Offline
It's obviously graphics driver glitch. Please post here file '/var/log/Xorg.0.log' to analyze.
Offline
It's obviously graphics driver glitch. Please post here file '/var/log/Xorg.0.log' to analyze.
I'm not sure how I can realistically do that.
I tried 2.2.1 livecd and while it doesn't have the graphics problem, it was very slow and the installer won't run.
Offline
It took me a while but here's the log. https://pastebin.mozilla.org/8930709
Offline
Ok, we will analyze the log and let you know a result. You could also attach files directly into the forum posts - Post Reply -> Attachment -> Choose File ...
Offline
You could try to create a specific configuration for your Savage graphics chipset. Create file '/etc/X11/xorg.conf.d/99-savage.conf' and paste following contents into it:
Section "Device"
Identifier "gfxcard"
Driver "savage"
# You will likely have to use NoAccel. You can try EXA, but it's likely you will end up
# with a corrupted screen or a hard lockup.
Option "NoAccel" "True"
# Use ShadowFB instead of acceleration. It's unlikely that acceleration will provide
# any benefits on this ancient chipset anyway.
Option "ShadowFB" "Enable"
# The following two options might or might not improve performance. Remove the "#" to
# try using them:
# Option "NoPciBurst" "Enable"
# Option "FramebufferWC"
# If Xorg crashes on startup (hangs with black screen) you may try out the following
# two lines (by removing the "#" before the line):
# Option "NoDDC"
# The 1024 in UseTiming is for a Notebook with a native resolution of 1024x768 pixel.
# If you have a native resolution of 800x600 pixel you should use "UseTiming800" instead.
# Option "UseTiming1024"
# EXA might or might not work. It's likely that it will not, but if you want to try it,
# uncomment the following line and comment out the "NoAccel" option:
# Option "AccelMethod" "EXA"
EndSection
Section "Screen"
Identifier "Screen 0"
Device "gfxcard"
Monitor "Monitor 0"
# You can try setting DefaultDepth to 24, but many Savage cards only have 8MB of RAM
# and may not be able to achieve higher resolutions with 24-bit color.
DefaultDepth 16
EndSection
Section "Monitor"
Identifier "Monitor 0"
Option "DPMS" "Disable"
EndSection
Reboot. You could fiddle with some commented options to get it work properly.
Offline
It worked! Everything seems to run fine now. Thank you.
Offline
Pages: 1