Re: update graphics driver and google earth
Sounds like you got a similar laptop to my dell. I have the 945GM and the same processor. Can I assume that you use integrated memory as well? If so, how much memory does your graphics card use?
K-System Settings->Monitor And Display->Hardware->Administer Mode Button->Configure On this "Choose Graphics Cark" window, check the bottom right of the window for your RAM usage. Bottom Left should say your selected graphics card hardware. The driver should still be i810 (same familiy of cards, this confused me for weeks) If your not using enough RAM, you can specify it SOMEHOW in your xorg.conf. I can't find the exact syntax for that specification. (If you search my name you'll find a post about that) How much RAM? Does it desplay the proper hardware? Does it display the proper driver?
Fiesty Successfully set up my driver and configuration at install, so lets look at your xorg.conf
/etc/X11/xorg.conf
Be sure you back it up first!!
in your xorg.conf, you might want to be sure you have entries like
and
(Except yours will not say 945, obviously)
And
(Except yours will not say 945, obviously)
You could copy and paste your xorg.conf, that might help.
Sounds like you got a similar laptop to my dell. I have the 945GM and the same processor. Can I assume that you use integrated memory as well? If so, how much memory does your graphics card use?
K-System Settings->Monitor And Display->Hardware->Administer Mode Button->Configure On this "Choose Graphics Cark" window, check the bottom right of the window for your RAM usage. Bottom Left should say your selected graphics card hardware. The driver should still be i810 (same familiy of cards, this confused me for weeks) If your not using enough RAM, you can specify it SOMEHOW in your xorg.conf. I can't find the exact syntax for that specification. (If you search my name you'll find a post about that) How much RAM? Does it desplay the proper hardware? Does it display the proper driver?
Fiesty Successfully set up my driver and configuration at install, so lets look at your xorg.conf
/etc/X11/xorg.conf
Be sure you back it up first!!
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bk
Section "Module"
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
EndSection
Load "i2c"
Load "bitmap"
Load "ddc"
Load "dri"
Load "extmod"
Load "freetype"
Load "glx"
Load "int10"
Load "vbe"
EndSection
Section "Device"
Identifier "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Driver "i810"
BusID "PCI:0:2:0"
EndSection
Identifier "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Driver "i810"
BusID "PCI:0:2:0"
EndSection
And
Section "Screen"
Identifier "Default Screen"
Device "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x800"
EndSubSection
#[section continues with a list of subsections with different Depth]#
EndSection
Identifier "Default Screen"
Device "Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller"
Monitor "Generic Monitor"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x800"
EndSubSection
#[section continues with a list of subsections with different Depth]#
EndSection
You could copy and paste your xorg.conf, that might help.
Comment