View previous topic :: View next topic |
Author |
Message |
wabineo n00b
Joined: 06 Oct 2003 Posts: 5
|
Posted: Tue Oct 21, 2003 10:55 am Post subject: i810 xfree86 installation |
|
|
I got a Family Net PC
http://www.yelloworb.com/FamilyNet/ and want to run a gentoo on it but when I try to run XFree86 it crashes rudeless. I configured it with a i810 driver and also tried vesa and vga drivers. I also read a morning long the posts on this site but I still can't get the damn thing running. What happens is that the whole computer locks up with the screen flimmering half blackandblue. I can't even connect via ssh or change to an other terminal. I have to powercycle it. As a Monitor I have a Philips 170S2.
I reduced the resolution to the minimum and also tried to leave everything open to the possibilities but still it won't work.
I don't really think anybody out there got this configuration but perhaps the same Chipset and can post me a XF86Config file or atleast one that somehow works. If it would help I can post the latest version of the config file.
Thanks alot
wabi |
|
Back to top |
|
|
wabineo n00b
Joined: 06 Oct 2003 Posts: 5
|
Posted: Tue Oct 21, 2003 2:53 pm Post subject: solved |
|
|
I solved the problem by booting from the livecd and starting the XFree86 server there and then copying the XF86Config file to the harddisk. It's that simple when you don't try to do it yourself. But why doesn't gentoo configure it automatically correct?
or is there a XFree86-autoconfigurator that works on i386 (there are some for PPC)
thanks
andy |
|
Back to top |
|
|
ebrostig Bodhisattva
Joined: 20 Jul 2002 Posts: 3152 Location: Orlando, Fl
|
Posted: Tue Oct 21, 2003 6:46 pm Post subject: |
|
|
I've been using the i810 now for about a year without a problem. There is good support for it in 4.3.x of Xfree.
The recommended way of configuring X is to run:
XFree86 -configure
This will create a file called XF86Config.new in your current directory. This file can then be tested with the following command:
XFree86 -xf86config XF86Config.new
If this works, copy the file to /etc/X11/XF86Config
And for your enjoyment and for you to compare with the one that works, I have attached my working config file. I do run a resolution of 1600x1200, but you can edit that to suit your own needs.
Code: |
Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "HandleSpecialKeys" "Always"
EndSection
Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/X11R6/lib/modules"
FontPath "/usr/X11R6/lib/X11/fonts/truetype/"
FontPath "/usr/X11R6/lib/X11/fonts/TTF/"
FontPath "/usr/X11R6/lib/X11/fonts/freefont/"
FontPath "/usr/X11R6/lib/X11/fonts/sharefont/"
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
FontPath "/usr/X11R6/lib/X11/fonts/CID/"
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
EndSection
Section "Module"
Load "extmod"
Load "dri"
Load "dbe"
Load "record"
Load "xtrap"
Load "glx"
Load "speedo"
Load "freetype"
Load "type1"
EndSection
Section "DRI"
Mode 0666
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
Option "Device" "/dev/mouse"
EndSection
Section "Monitor"
#DisplaySize 380 290 # mm
Identifier "Monitor0"
VendorName "DEL"
ModelName "DELL D1626HT"
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 "AGPMode" "1"
VideoRam 65535
Identifier "Card0"
Driver "i810"
VendorName "Intel Corp."
BoardName "82845G/GL [Brookdale-G] Chipset Integrated Graphics Device"
BusID "PCI:0:2:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
DefaultDepth 24
Monitor "Monitor0"
SubSection "Display"
Depth 1
EndSubSection
SubSection "Display"
Depth 4
EndSubSection
SubSection "Display"
Depth 8
EndSubSection
SubSection "Display"
Depth 15
EndSubSection
SubSection "Display"
Depth 16
Modes "1600x1200" "1280x1024" "1024x768"
ViewPort 0 0
EndSubSection
SubSection "Display"
Depth 24
Modes "1600x1200" "1280x1024" "1024x768"
ViewPort 0 0
EndSubSection
EndSection
|
Hope this helps
Erik _________________ 'Yes, Firefox is indeed greater than women. Can women block pops up for you? No. Can Firefox show you naked women? Yes.' |
|
Back to top |
|
|
|