Forums

Skip to content

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

Quick question about xorg-1.8.0

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
12 posts • Page 1 of 1
Author
Message
Zeerak
Apprentice
Apprentice
Posts: 239
Joined: Mon Nov 27, 2006 8:30 pm
Location: Aalborg, Denmark

Quick question about xorg-1.8.0

  • Quote

Post by Zeerak » Sun Apr 18, 2010 12:43 pm

Hey,

I'm moving all of my configurations to xorg.conf.d (like the modularity of it) and I just need to be sure whether or not the names of the config files are "<random-number>-<driver-name>.conf" or "<specified-number>-<driver-name>.conf"?

Thanks for the help :)
Last edited by Zeerak on Sun Apr 18, 2010 6:11 pm, edited 2 times in total.
Einstein was a great man, but he got one thing wrong with his theory of relativity. E= MC hammer. As far as logic goes, this is flawed, but as a show of wit, you can't touch this
Top
avx
Advocate
Advocate
User avatar
Posts: 2152
Joined: Mon Jun 21, 2004 4:06 am

  • Quote

Post by avx » Sun Apr 18, 2010 1:42 pm

The numbers are only used for defining which files should be load first, else they'd be loaded in alphabetical order. So, if you have a setup which requires one file to be loaded so another one works propaply, give the latter a higher number(ie, 01-must-load-first, 99-at-least-it-gets-loaded).
Top
Zeerak
Apprentice
Apprentice
Posts: 239
Joined: Mon Nov 27, 2006 8:30 pm
Location: Aalborg, Denmark

  • Quote

Post by Zeerak » Sun Apr 18, 2010 1:46 pm

alright thanks. Then my problem isn't there it seems (the keyboard settings are ignored when in xorg.conf.d)
I'll have a look at it. Thanks
Einstein was a great man, but he got one thing wrong with his theory of relativity. E= MC hammer. As far as logic goes, this is flawed, but as a show of wit, you can't touch this
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Sun Apr 18, 2010 4:15 pm

Hi, can you post your actual files, your xorg.conf and your other .conf ?
Top
Zeerak
Apprentice
Apprentice
Posts: 239
Joined: Mon Nov 27, 2006 8:30 pm
Location: Aalborg, Denmark

  • Quote

Post by Zeerak » Sun Apr 18, 2010 6:11 pm

d2_racing wrote:Hi, can you post your actual files, your xorg.conf and your other .conf ?
Your wish is my command :-)

I assume working files (synaptics) can be ignored.
But Xorg.conf:

Code: Select all

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    Option         "AllowEmptyInput" "off"
EndSection

Section "Files"
    FontPath        "/usr/share/fonts/100dpi/"
    FontPath        "/usr/share/fonts/75dpi/"
    FontPath        "/usr/share/fonts/dejavu/"
    FontPath        "/usr/share/fonts/util/"
EndSection

Section "Module"
    Load           "glx"
    Load           "dbe"
EndSection

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "keyboard"
    Option         "Xkblayout"          "dk"
    Option         "XkbRules"           "xorg"
    Option          "XkbOptions"        "terminate:ctrl_alt_bksp"
EndSection

#Section "Monitor"                                                                                                                                                                                                                                                                     
# HorizSync source: edid, VertRefresh source: edid                                                                                                                                                                                                                                     
#    Identifier     "Monitor0"                                                                                                                                                                                                                                                         
#    VendorName     "Unknown"                                                                                                                                                                                                                                                          
#    ModelName      "LPL"                                                                                                                                                                                                                                                              
#    HorizSync       30.0 - 75.0                                                                                                                                                                                                                                                       
#    VertRefresh     60.0                                                                                                                                                                                                                                                              
#    Option         "DPMS"                                                                                                                                                                                                                                                             
#EndSection                                                                                                                                                                                                                                                                            

Section "Device"
    Identifier     "Device0"
    Driver         "nouveau"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce Go 7300"
    Option         "RenderAccel" "true"
    Option         "AllowGLXWithComposite" "true"
    BusID          "PCI:1:0:0"
    Screen          0
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
Keyboard stuff is set to be ignored when I try with the keyboard stuff :-)

xorg.conf.d/{00/96/10}-keyboard.conf

Code: Select all

File Edit Options Buffers Tools Conf Help                                                                                                                                                                                                                                              
Section "InputClass"
    Identifier          "Keyboard0"
    MatchIsKeyboard     "1"
    Driver              "keyboard"
    Option              "Xkblayout"     "dk"
    Option              "XkbRules"      "xorg"
    Option              "XkbOptions"    "terminate:ctrl_alt_bksp"
EndSection
Einstein was a great man, but he got one thing wrong with his theory of relativity. E= MC hammer. As far as logic goes, this is flawed, but as a show of wit, you can't touch this
Top
red-wolf76
l33t
l33t
User avatar
Posts: 714
Joined: Wed Apr 13, 2005 6:20 pm
Location: Rhein-Main Area

  • Quote

Post by red-wolf76 » Sun Apr 18, 2010 9:38 pm

I think one is supposed to use evdev under xorg-1.8.

I can't currently install it, because of a conflict with nvidia-drivers... Plus, evdev never worked for me (or - more probably - I'm too dense to set it up correctly)...
0mFg, G3nt00 r0X0r$ T3h B1g!1111 ;)

Use sane CFLAGS! If for no other reason, do it for the lulz!
Top
Zeerak
Apprentice
Apprentice
Posts: 239
Joined: Mon Nov 27, 2006 8:30 pm
Location: Aalborg, Denmark

  • Quote

Post by Zeerak » Sun Apr 18, 2010 9:52 pm

isn't evdev just to be a general driver? Personally I prefer to have a number of drivers (they're all dependencies anyway), so one could use evdev as the single driver, but the option of using a number of drivers is also open.
Einstein was a great man, but he got one thing wrong with his theory of relativity. E= MC hammer. As far as logic goes, this is flawed, but as a show of wit, you can't touch this
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Sun Apr 18, 2010 11:04 pm

Hi, can you use this one :

Code: Select all

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
EndSection

Section "Files"
    FontPath        "/usr/share/fonts/100dpi/"
    FontPath        "/usr/share/fonts/75dpi/"
    FontPath        "/usr/share/fonts/dejavu/"
    FontPath        "/usr/share/fonts/util/"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nouveau"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce Go 7300"
    Option         "RenderAccel" "true"
    Option         "AllowGLXWithComposite" "true"
    BusID          "PCI:1:0:0"
    Screen          0
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "0"
    Option         "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Sun Apr 18, 2010 11:05 pm

And try this one :

Code: Select all

Section "InputClass"
        Identifier "Keyboard"
        Driver "evdev"
        Option "xkbLayout"  "dk"
        Option  "xkbOptions"        "terminate:ctrl_alt_bksp" 
        MatchIsKeyboard "on"
EndSection

Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Sun Apr 18, 2010 11:06 pm

red-wolf76 wrote:I think one is supposed to use evdev under xorg-1.8.
Indeed,because keyboard and mouse are long gone :

Code: Select all

x11-drivers/xf86-input-keyboard
x11-drivers/xf86-input-mouse
Top
Jaglover
Watchman
Watchman
User avatar
Posts: 8291
Joined: Sun May 29, 2005 1:57 am
Location: Saint Amant, Acadiana

  • Quote

Post by Jaglover » Sun Apr 18, 2010 11:23 pm

d2_racing wrote:
red-wolf76 wrote:I think one is supposed to use evdev under xorg-1.8.
Indeed,because keyboard and mouse are long gone
8O Hope not? New Xorg required udev with extras, udev with extras wanted to pull in acl, I objected at this point, using good old keyboard and mouse ...
Top
d2_racing
Bodhisattva
Bodhisattva
User avatar
Posts: 13047
Joined: Mon Apr 25, 2005 2:25 pm
Location: Ste-Foy,Canada
Contact:
Contact d2_racing
Website

  • Quote

Post by d2_racing » Mon Apr 19, 2010 12:17 am

I don't have these 2 on my box :

Code: Select all

x11-drivers/xf86-input-keyboard
x11-drivers/xf86-input-mouse 
And everything is working, udev and Xorg-Server get the job done.
Top
Post Reply

12 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