Gentoo Archives: gentoo-desktop

From: "M. Edward (Ed) Borasky" <znmeb@×××××××.net>
To: gentoo-desktop@l.g.o
Subject: Re: [gentoo-desktop] startx
Date: Fri, 19 Jan 2007 14:45:28
Message-Id: 45B0D8D7.6040606@cesmail.net
In Reply to: [gentoo-desktop] startx by Tadeu Granemann
1 Tadeu Granemann wrote:
2 > Hi, i'm gonna put more details about my problem :P
3 >
4 > I'm trying to install gentoo live CD 2006.1 in my ACER 5610, with
5 > Intel Integrated Graphics.
6 > I get an error with "startx". I want install gentoo reading the manual.
7 > I think the video driver is i810.
8 >
9 > The end of Xorg log:
10 >
11 > (II) I810: Driver for Intel Integrated Graphics Chipsets: i810,
12 > i810-dc100,
13 > i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915),
14 > 915GM, 945G
15 > (II) Primary Device is: PCI 00:02:0
16 > (--) Assigning device section with no busID to primary device
17 > (WW) I810: No matching Device section for instance (BusID PCI:0:2:1)
18 > found
19 > (EE) No devices detected.
20 >
21 > Fatal server error:
22 > no screens found
23 >
24 >
25 > Any hint ?
26 >
27 > thanks
28 > Tadeu
29 You're missing some stuff in your xorg.conf file. It found the graphics
30 chipset OK. The easiest way to get on the air is usually the following:
31
32 1. Log on to the console as root.
33 2. Type
34
35 # X -configure
36
37 X will start up, probe your hardware, and write a file
38 "/root/xorg.conf.new"
39
40 3. You'll need to edit this file in two or three places. For some reason
41 (I should file a defect on this) it usually gets the mouse device wrong.
42 Edit the file and if it says "/dev/mice" or "/dev/mouse", change it to
43 "/dev/psaux". You should end up with a line that looks something like this:
44
45 Option "Device" "/dev/psaux"
46
47
48 4. Figure out what screen resolution you want. Most monitors these days
49 are capable of handling all sorts of resolutions, but I've got a fairly
50 ancient one and can't deal with small characters, so I usually just use
51 1024x768. Towards the bottom of the xorg.conf.new file, you'll want
52 something like this:
53
54 Section "Screen"
55 Identifier "Screen0"
56 Device "Card0"
57 Monitor "Monitor0"
58 DefaultColorDepth 24
59 SubSection "Display"
60 Viewport 0 0
61 Depth 1
62 Modes "1024x768" "800x600" "640x480"
63 EndSubSection
64 SubSection "Display"
65 Viewport 0 0
66 Depth 4
67 Modes "1024x768" "800x600" "640x480"
68 EndSubSection
69 SubSection "Display"
70 Viewport 0 0
71 Depth 8
72 Modes "1024x768" "800x600" "640x480"
73 EndSubSection
74 SubSection "Display"
75 Viewport 0 0
76 Depth 15
77 Modes "1024x768" "800x600" "640x480"
78 EndSubSection
79 SubSection "Display"
80 Viewport 0 0
81 Depth 16
82 Modes "1024x768" "800x600" "640x480"
83 EndSubSection
84 SubSection "Display"
85 Viewport 0 0
86 Depth 24
87 Modes "1024x768" "800x600" "640x480"
88 EndSubSection
89 EndSection
90
91
92 The specific error message you got,
93
94 Fatal server error:
95 no screens found
96
97 indicates something is wrong in this last section I posted.
98
99 Once you've edited xorg.conf.new, you can test it by typing
100
101 # X -config /root/xorg.conf.new
102
103 If X comes up, copy the new config file to /etc/X11/xorg.conf and you
104 should be ready.
105
106
107 --
108 M. Edward (Ed) Borasky, FBG, AB, PTA, PGS, MS, MNLP, NST, ACMC(P)
109 http://borasky-research.blogspot.com/
110
111 If God had meant for carrots to be eaten cooked, He would have given rabbits fire.
112
113 --
114 gentoo-desktop@g.o mailing list

Replies

Subject Author
Re: [gentoo-desktop] startx Tadeu Granemann <tadeugr@×××××.com>