LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Strange graphics on Intel 810 (https://www.linuxquestions.org/questions/linux-newbie-8/strange-graphics-on-intel-810-a-332710/)

dinolinux 06-12-2005 07:05 AM

Strange graphics on Intel 810
 
Hello, World!

I've runned Linux for a while now (I know what it is). But now I've got a on-board Intel 810 graphics card. On Debian, Fedora, CentOS and other RedHat based distros it's working fine, but as soon as I install Arch, Slackware or something like that, the graphics becomes terrible. I can only see a black background and a extreme color mess. I've tried to choose Intel 810 on xorgconfig, xorgconf and the xfree86 utilities, but it's the same mess. Is there any driver or software which can fix this problem???

Thanks
:Pengy:

aikidoist72 06-13-2005 01:19 AM

It sounds like your xorg.conf is not configured properly. Check the stats for your monitor including horizontal and vertical frequency ranges.

With Arch -
Code:

hwd -xa
With Slackware -
Code:

Xorg -confgure
colour depth can only go to 24
modes - try 1280x1024

Here is part of my xorg
Code:


Section "Monitor"
        Identifier "Monitor0"
                Option "DPMS" "true"
                HorizSync    30.0 - 95.0 # Warning: This may fry old Monitors
                VertRefresh  50.0 - 160.0 # High rate.

EndSection

Section "Screen"
        Identifier "Screen0"
        Device    "Card0"
        Monitor    "Monitor0"
        DefaultColorDepth  24
        SubSection "Display"
                Depth    1
                Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth    4
                Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth    8
                Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth    15
                Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth    16
                Modes "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth    24
                Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
        EndSubSection
#        SubSection "Display"
#                Depth    32
#                Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
#        EndSubSection
EndSection


franzfranz 06-13-2005 10:44 AM

and the kernel configuration is the same? I had to monkey around with quite a few kernel configs to get onboard video going on an intel mobo.


All times are GMT -5. The time now is 11:56 PM.