Results 1 to 5 of 5
I am kinda new to making my own X installation work so bear with me, I am trying to make gnome work in a arch 7.2 base install. I installed ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-06-2006 #1Just Joined!
- Join Date
- Jun 2006
- Location
- do you even know what a wawa is?
- Posts
- 25
trouble with my xorg.conf file
I am kinda new to making my own X installation work so bear with me, I am trying to make gnome work in a arch 7.2 base install. I installed xorg7.0, the ati proprietary drivers and utils, and gnome. I ran xorgconfig to create a xorg.conf file, then ran aticonfig --initial --input=/etc/X11/xorg.conf to customize the xorg.conf file to the fglrx drivers for my card. when I run startx I get the no EE lines and the WW line
fglrx: No matching Device section for instance (BusID PCI:1:0:1) found
the following is my xorg.conf file as it is now, only with all the commented lines removed thanks to grep.thanks in advance for any help.
#
#
#
#
#
#
#
#
#
Section "ServerLayout"
Identifier "Simple Layout"
Screen 0 "aticonfig-Screen[0]" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/share/X11/rgb"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/75dpi"
FontPath "/usr/share/fonts/100dpi"
FontPath "/usr/share/fonts/TTF"
EndSection
Section "Module"
SubSection "extmod"
EndSubSection
Load "freetype"
Load "dri"
Load "glx"
EndSection
Section "InputDevice"
#
#
Identifier "Keyboard1"
Driver "kbd"
Option "AutoRepeat" "500 30"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Device" "/dev/input/mouse0"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "m990"
HorizSync 31.5 - 82.0
VertRefresh 40.0 - 150.0
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "Standard VGA"
Driver "vga"
VendorName "Unknown"
BoardName "Unknown"
EndSection
Section "Device"
#VideoRam 131072
Identifier "** ATI Radeon (generic) [radeon]"
Driver "fglrx"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]"
Driver "fglrx"
EndSection
Section "Screen"
Identifier "Screen 1"
Device "** ATI Radeon (generic) [radeon]"
Monitor "m990"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 8
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1600x1200" "1280x1024" "1024x768" "800x600"
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]"
Device "aticonfig-Device[0]"
Monitor "aticonfig-Monitor[0]"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
- 07-06-2006 #2Linux Newbie
- Join Date
- Dec 2004
- Location
- Portland, OR
- Posts
- 123
Firstly, these aren't doing anything, delete them:
Next, try specifying the Bus ID in the following:Code:Section "Device" Identifier "Standard VGA" Driver "vga" VendorName "Unknown" BoardName "Unknown" EndSection Section "Device" #VideoRam 131072 Identifier "** ATI Radeon (generic) [radeon]" Driver "fglrx" EndSection
You likely have a dual head card and it often finds PCI:1:0:1 as the second-head pseudo-device living on the AGP card. You may note thatCode:Section "Device" Identifier "aticonfig-Device[0]" Driver "fglrx" BusID "PCI:1:0:0" EndSection
starts a very boring X server, whileCode:X;
throws an error.Code:startx
- 07-07-2006 #3Just Joined!
- Join Date
- Jun 2006
- Location
- do you even know what a wawa is?
- Posts
- 25
you were right that I was able to start it with X;, but only before I made your changes. now I am getting the error
undefined device "** ATI Radeon (generic) [radeon]"
whether I start x with "startx" or "X;" I know enough to know that that is coming from the section where I define my screen resolutions and colors but I don't know what it should be referencing so that I can fix it. also I took out all the default stuff thats started in xinitrc but I don't know what I need to add so that it starts gnome for me. once again thanks for the help, and the knowledge.
- 07-07-2006 #4Linux Newbie
- Join Date
- Dec 2004
- Location
- Portland, OR
- Posts
- 123
A good thing to do might be to change all of the identifiers to simple stuff like "AtiCard", "Screen0", etc., so that when you reference these things throughout the conf its clearer whats going on. try simplifying this conf file to just one screen, one display and one device each labeled reasonable identifiers. then replace the references to each with the only possible identifier which will then have to be correct.
- 07-07-2006 #5Just Joined!
- Join Date
- Jun 2006
- Location
- do you even know what a wawa is?
- Posts
- 25
I understand what you are saying. I guess the question really is; does that section, the one defining resolution and color settings, get described as a monitor, a screen, or a device? I know its not device, I understand that that is my video card. what I don't understand is what distinction does Xorg make between a screen and a monitor. since I don't know the difference I don't know what section falls into which category. sorry if I sound kinda noobish but I have never set up X manually before, always gone console only or used a distro that configured it for me.


Reply With Quote
