Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Desktop Environments
  • Search

xorg.config

Problems with GUI applications? Questions about X, KDE, Gnome, Fluxbox, etc.? Come on in. NOTE: For multimedia, go up one forum
Post Reply
Advanced search
7 posts • Page 1 of 1
Author
Message
dphipps
n00b
n00b
User avatar
Posts: 23
Joined: Wed Jan 26, 2005 5:50 am
Location: USA

xorg.config

  • Quote

Post by dphipps » Mon Mar 07, 2005 6:14 pm

I can not get my xorg.config file to work. I have a ATI Radeon 9000 pro graphics card. When there is no xorg.config file in /etc/X11 than my screen works but only lets me select 640x480 but if I creat a xorg.config file with ether xorgconfig or Xorg -confiure then all I get is a blank screen.
Top
Gentoonie
Apprentice
Apprentice
User avatar
Posts: 205
Joined: Tue Apr 06, 2004 1:23 pm
Location: near Munich | Bavaria | Germany
Contact:
Contact Gentoonie
Website

  • Quote

Post by Gentoonie » Mon Mar 07, 2005 6:20 pm

Well, this is obviously because your auto generated xorg.conf file doesnt work. My advice would be to auto generate one, but then check it manually and edit critical parts. Theres a load of documentation about xorg around, here in the forums for example.

Good luck thoguh
Do you know the secret hand shake - you best use it.

GCC 4, Kernel 2.6.14-ck7, NPTL
Top
dphipps
n00b
n00b
User avatar
Posts: 23
Joined: Wed Jan 26, 2005 5:50 am
Location: USA

  • Quote

Post by dphipps » Thu Mar 10, 2005 12:34 am

I still can't get a xorg.conf file to work and now auto generation program won't work anymore. It still works without the file though and sometimes if a restart KDE it will give me the larger screens (this however is undedictable but it seems to be conected to time, becouse it has done this only ater I have edited the timezone and time).
Top
NetHawl
Tux's lil' helper
Tux's lil' helper
Posts: 83
Joined: Sun May 30, 2004 10:10 am
Location: Slovenija

  • Quote

Post by NetHawl » Thu Mar 10, 2005 5:06 pm

Maybe I can help you,
Ive got an:
ATI Radeon 9000 Pro 128MB
1. Did you install/emerge the ati-drivers?
2.Did you emerge them with ACCEPT_KEYWORDS="~x86"?
-Thats for the new versions, experimental status.
3. If you done that, login as root and make fglrxconfig.....answer the questions
then move (mv) the /etc/X11/XF86Configure.conf (or however it is named) to /etc/X11/xorg.conf

done all that?
Ok....the next thing is, check your Kernel, and agpgart module, etc. if everything is right.
And...another small thing that could help, go in the xorg.conf and look for this line:
Section "InputDevice"

Identifier "Keyboard1"
Driver "Keyboard"

edit it to:
Section "InputDevice"

Identifier "Keyboard1"
Driver "kbd"


I think this should work.
Hope it works, and you have fun with the Xorg ;))
Top
outspoken
Guru
Guru
User avatar
Posts: 464
Joined: Sat Feb 14, 2004 10:03 pm
Location: orlando, fl
Contact:
Contact outspoken
Website

  • Quote

Post by outspoken » Fri Mar 11, 2005 6:30 pm

could be a few things, but without a posted xorg.conf there is going to be an endless thread of guessing games.

first post your xorg.conf
and if possible post a 'grep EE /var/log/Xorg....' use tab completion for that, i don't have a linux system handy with xorg on it, these are all older redhat boxes running xfree.
Top
jrz
Apprentice
Apprentice
User avatar
Posts: 272
Joined: Wed Mar 19, 2003 5:43 am
Location: Sacramento, CA USA
Contact:
Contact jrz
Website

  • Quote

Post by jrz » Fri Mar 11, 2005 7:31 pm

My xorg.conf is probably a bad example but I wrote it to reduce the clutter. It assumes:
Samsung 955DF monitor, Logitech MX300 usb mouse, Nvidia GF4 Ti4200 video card, and using the XFS (X Font Server)

Code: Select all

#############################################################################
Section "Files"
        RgbPath   "/usr/X11R6/lib/X11/rgb"
        FontPath  "unix/:-1"
EndSection

#############################################################################
Section "Module"
        Load "extmod"
        Load "ddc"
        Load "dbe"
        Load "type1"
        Load "freetype"
        Load "glx"
EndSection
#############################################################################
#Ohh, pretty.
#Section "Extensions"
#       Option "Composite" "Enable"
#EndSection
#############################################################################
Section "InputDevice"
        Identifier "keyboard0"
        Driver     "kbd"

        Option "AutoRepeat" "500 30"

        Option "XkbModel"   "microsoft"
        Option "XkbLayout"  "us"
EndSection

#############################################################################
Section "InputDevice"
        Identifier "mouse0"
        Driver     "mouse"

        Option "Protocol"      "IMPS/2"
        Option "Device"        "/dev/input/mouse0"
        Option "ZAxisMapping"  "4 5"
        Option "Resolution"    "800"
        Option "SampleRate"    "125"
EndSection

#############################################################################
Section "Device"
        Identifier "video0"
        Driver     "nvidia"

        Option     "RenderAccel"   "On"
        Option     "UseEdidFreqs"  "On"
EndSection

#############################################################################
Section "Monitor"
        Identifier   "monitor0"
        VendorName   "Samsung"
        ModelName    "Syncmaster 955DF"
        DisplaySize  352 264
        HorizSync    30-85
        VertRefresh  50-160
        Option       "DPMS"  "On"
        Option       "SyncOnGreen"  "On"
EndSection

#############################################################################
Section "Screen"
        Identifier    "screen0"
        Device        "video0"
        Monitor       "monitor0"
        DefaultDepth  24

        SubSection "Display"
                   Depth  8
                   Modes  "1280x960" "1024x768" "800x600" "640x480" "320x200"
                   ViewPort 0 0
        EndSubSection

        SubSection "Display"
                   Depth  16
                   Modes "1280x960" "1024x768" "800x600" "640x480" "320x200"
                   ViewPort 0 0
        EndSubSection

        SubSection "Display"
                   Depth 24
                   Modes "1400x1050" "1280x960" "1024x768" "800x600" "640x480" "320x200"
                   ViewPort 0 0
        EndSubSection
EndSection

#############################################################################
Section "ServerLayout"
        Identifier  "layout0"
        Screen      "screen0"
        InputDevice "mouse0"     "CorePointer"
        InputDevice "keyboard0"  "CoreKeyboard"
EndSection

#EOF
Press F1 for Help.
Top
ronvenema
Apprentice
Apprentice
User avatar
Posts: 160
Joined: Sun Jan 16, 2005 8:16 pm
Location: Dewey, Az

  • Quote

Post by ronvenema » Sat Mar 12, 2005 4:53 am

I have a ATI Radeon 9000 pro graphics card

Code: Select all

Section "Device"
        Identifier "video0"
        Driver     "nvidia"

        Option     "RenderAccel"   "On"
        Option     "UseEdidFreqs"  "On"
EndSection
You have the wrong driver.
Frustration leads to knowledge.
Top
Post Reply

7 posts • Page 1 of 1

Return to “Desktop Environments”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic