Answers to: Video is no longer displayedhttp://linuxexchange.org/questions/171/video-is-no-longer-displayed<p>I downloaded a ATI fglrx driver from the repository in Ubuntu 10.4 to help with my resolution. When I rebooted after splash, the monitor went to sleep. I am going to go into recovery mode to try and fix this. What code should I use to purge what I did and restore to default? Thanks in advance</p>enTue, 11 May 2010 09:39:29 -0400Answer by Garethhttp://linuxexchange.org/questions/171/video-is-no-longer-displayed/466<p>If you wish to reinstall fglrx do so, but after you install and when you reboot, go into recovery mode and use the command:</p> <pre><code>aticonfig --initial -f </code></pre> <p>This will force the ATI configuration to properly overwrite and set the correct xorg.conf values for the card. When you reboot now things should work. However, if you use a laptop you may have issues with ACPI so you can also try the command:</p> <pre><code>aticonfig --acpi-services=off </code></pre> <p>This will turn off the power saving features on the graphics which ATI did not implement properly in their drivers.</p>GarethTue, 11 May 2010 09:39:29 -0400http://linuxexchange.org/questions/171/video-is-no-longer-displayed/466Answer by Michael Forsberg 1http://linuxexchange.org/questions/171/video-is-no-longer-displayed/258<p>Thank you for all of your replies. I purged the fglrx from recovery mode and now the display booted up ok. The only gripe I have is that my monitor resolution is limited to 1028x768 an 1360x768 and 800x660 and 848x480 640x480. I know I could be using another resolution other than the present 1028x768. My card is capable of much more. By the way my card is a ATI-9600 all-in-Wonder. How would I be able to match what my card can actually can provide resolution wise? thanks again.</p>Michael Forsberg 1Tue, 04 May 2010 10:06:39 -0400http://linuxexchange.org/questions/171/video-is-no-longer-displayed/258Answer by William Shipelyhttp://linuxexchange.org/questions/171/video-is-no-longer-displayed/234<p>Actually, the radeon driver (ATI nv equivalent) is quite well suited for 3d. i'm not sure it's available for all cards, but it worked great for my 9200, as long as i never moved windows with 3D graphics in them.</p> <p>once it's fixed, try glxgears in a terminal and check the framerate. If it divides out to a frame rate that is pretty high (say 400 or higher FPS, not per 5 secs) you have a well-working 3d driver for your card, and you should leave it alone. fglrx is known to be buggy and unreliable, as is stated above.</p> <p>The radeon driver does not work with extremely old agp cards, like my rage 128 pro, so watch for that.</p>William ShipelyTue, 04 May 2010 03:05:16 -0400http://linuxexchange.org/questions/171/video-is-no-longer-displayed/234Answer by Yaro Kasearhttp://linuxexchange.org/questions/171/video-is-no-longer-displayed/178<p>I wouldn't recommend using fglrx (Now commonly known as Catalyst.) because it is grossly unreliable. If you switched to that driver and it isn't working for you chances it won't work for you no matter what you do, and I recommend switching back to open source drivers.</p> <p>OR, if you want a GPU you can get all the potential out of under Linux, I strongly recommend nVidia cards. The proprietary driver is excellent quality. However, the open source drivers leave much to be desired. nv barely even supports 2D, and Nouveau is still years from completion and still doesn't have 3D acceleration.</p>Yaro KasearMon, 03 May 2010 16:36:38 -0400http://linuxexchange.org/questions/171/video-is-no-longer-displayed/178Answer by gouchouthttp://linuxexchange.org/questions/171/video-is-no-longer-displayed/173<pre><code> sudo /usr/bin/dpkg --purge &lt;fglrx's package name here&gt; </code></pre> <p>- though in recovery mode you're logged in as root I think, so you won't need the "sudo"</p> <p>This will remove the package &amp; any config. You haven't said what your prior situation was, but this should help. You didn't say if you're using an X config file,but it may be worth making sure if there's any /etc/X11/xorg.* files &amp; if there are, checking if they mention 'fglrx' You could do this with</p> <pre><code> /bin/grep "fglrx" /etc/X11/xorg.* </code></pre> <p>but there probably won't be any though.</p> <p>When you ask a question you should probably supply a lot more info about your system, like what video card, what the relevant thing's setup was before you changed it, &amp; any error messages. When you say the monitor "went to sleep" its not really clear what state your system was actually in, as usually if the X driver fails then you drop back to the console. When X starts up it creates a log file "/var/log/Xorg.0.log which will contain any error messages,also the previous one that has ".old" appended to the filename which you can compare.</p> <p>If the "radeon" driver works with your card it may be worth trying afterwards also</p>gouchoutMon, 03 May 2010 13:55:52 -0400http://linuxexchange.org/questions/171/video-is-no-longer-displayed/173