Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
XOrg 6.8.0-r1 problems (solved)
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
HeadHolio
Guru
Guru


Joined: 10 Aug 2002
Posts: 445

PostPosted: Thu Oct 14, 2004 3:46 am    Post subject: XOrg 6.8.0-r1 problems (solved) Reply with quote

After upgrading from XOrg 6.7.0 to 6.8.0-r1 I have run into a few minor problems that have annoyed the hell out of me (I am using Gentoo-dev-sources 2.6.8-gentoo-r8 with nvidia-kernel-1.0.6111-r2 and nvidia-glx-1.0.6111),

1. Keyboard input is sometime delayed, echoed, or not responsive
This one really annoys me because things will seem to work fine but then screw up at the worse times like when playing games. Suddenly my character will be moving in the wrong direction, or he won't move at all. This also happens in konsole, suddenly doubling or tripling characters.

2. I cannot switch to a terminal screen. CTR+ALT+F1/2/3/4/5 are all unresponsive. And as you can guess, that annoys me too. The only way I can get back to a terminal screen is to kill kdm, and then press CTR+ALT+BACKSPACE.

3. XOrg 6.8.0-r1 would not accept the config file I was using from XOrg 6.7.0. This doesn't bother me as much because I can easily create a new config file. But as it turns out, the main problem was that it didn't like the following option:
Code:
    Driver      "Keyboard"

I guess you need to have it as follows (with a small k)
Code:
    Driver      "keyboard"


I'll post my xorg.conf just in case anyone has some insight. Thanks in advance.

Code:
# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
#
Section "Module"

    Load        "dbe"   # Double buffer extension
    SubSection  "extmod"
      Option    "omit xfree86-dga"   # don't initialise the DGA extension
    EndSubSection

    Load        "type1"
#    Load        "speedo"
    Load        "freetype"
#    Load        "xtt"
    Load       "glx"
    Load       "dri"

EndSection

# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************

Section "Files"


    RgbPath "/usr/X11R6/lib/X11/rgb"

    FontPath   "/usr/share/fonts/misc/"
    FontPath   "/usr/share/fonts/TTF/"
    FontPath   "/usr/share/fonts/Type1/"
    FontPath   "/usr/share/fonts/CID/"
    FontPath   "/usr/share/fonts/75dpi/"
    FontPath   "/usr/share/fonts/100dpi/"
    FontPath   "/usr/share/fonts/local/"
    FontPath   "/usr/share/fonts/Speedo/"
#    FontPath   "/usr/share/fonts/TrueType/"
#    FontPath   "/usr/share/fonts/freefont/"

EndSection

# **********************************************************************
# Server flags section.
# **********************************************************************

Section "ServerFlags"

#    Option "NoTrapSignals"
#    Option "DontVTSwitch"
#    Option "DontZap"
#    Option "Dont Zoom"
#    Option "DisableVidModeExtension"
#    Option "AllowNonLocalXvidtune"
#    Option "DisableModInDev"
#    Option "AllowNonLocalModInDev"

EndSection

# **********************************************************************
# Input devices
# **********************************************************************

# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************

Section "InputDevice"

    Identifier "Keyboard1"
    Driver "keyboard"
#    Option     "Protocol"      "Xqueue"
    Option "AutoRepeat" "500 30"
#    Option "XkbDisable"
#    Option "XkbRules" "xorg"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "us"

EndSection


# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol"    "ExplorerPS/2"
    Option "Device"      "/dev/input/mice"
    Option "Buttons" "7"
    Option "ZAxisMapping" "6 7"
    Option "HWCursor" "false"
    Option "Resolution" "800"
#    Option "Protocol" "Xqueue"
#    Option "BaudRate" "9600"
#    Option "SampleRate" "150"
#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"
#    Option "ChordMiddle"

EndSection

# **********************************************************************
# Monitor section
# **********************************************************************

Section "Monitor"

    Identifier  "Generic CRT"
    HorizSync   31-48
    VertRefresh 56-85

EndSection


# **********************************************************************
# Graphics device section
# **********************************************************************

Section "Device"
    Identifier  "Ti4200"
    Driver      "nvidia"
#    Option  "NvAGP"  "1"
    Option "NoLogo" "True"
    Option "TwinView"
    Option      "SecondMonitorHorizSync"  "30-50"
    Option      "SecondMonitorVertRefresh"        "60"
    Option      "MetaModes"  "1024x768,1024x768"
    Option      "TwinViewOrientation"     "Clone"
    Option      "TVStandard"      "NTSC-M"
    Option      "TVOutFormat"     "SVIDEO"
    Screen 0
    #VideoRam    65536
EndSection


# **********************************************************************
# Screen sections
# **********************************************************************

Section "Screen"
    Identifier  "Screen 0"
    Device      "Ti4200"
    Option "NvAGP" "1"
    Monitor     "Generic CRT"
    DefaultDepth 24

    Subsection "Display"
        Depth       24
        Modes       "1024x768" "800x600" "640x480"
        ViewPort    0 0
    EndSubsection
EndSection

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

Section "ServerLayout"

    Identifier  "Simple Layout"
    Screen "Screen 0"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"

EndSection

Section "DRI"
   Mode 0666
EndSection


Last edited by HeadHolio on Thu Oct 14, 2004 8:08 pm; edited 1 time in total
Back to top
View user's profile Send private message
zerojay
Veteran
Veteran


Joined: 09 Aug 2003
Posts: 1033

PostPosted: Thu Oct 14, 2004 3:51 am    Post subject: Reply with quote

I believe the Keyboard module was renamed to "kbd".
Back to top
View user's profile Send private message
HeadHolio
Guru
Guru


Joined: 10 Aug 2002
Posts: 445

PostPosted: Thu Oct 14, 2004 4:10 am    Post subject: no go Reply with quote

Tried changing it, makes no difference. I also tried downgrading to the "stable" nvidia-kernel/glx and opengl-update. All made no difference after reloading the modules.
Back to top
View user's profile Send private message
cabbagewalker
n00b
n00b


Joined: 09 Feb 2004
Posts: 61
Location: Nottingham, UK

PostPosted: Thu Oct 14, 2004 11:02 am    Post subject: Reply with quote

Hi
I had a similar issue with <cntr><alt> Func 1 etc and also with the "Windows " menu keys after installing 6.8.1

Bug #47243 gave the answer to me.

There are two versions of xkbcomp,
one in
/usr/X11R6/bin

and the other in:
/usr/X11R6/lib/X11/xkb

The latter one is zero length.-- copying the first to the second made it work again.
Back to top
View user's profile Send private message
cabbagewalker
n00b
n00b


Joined: 09 Feb 2004
Posts: 61
Location: Nottingham, UK

PostPosted: Thu Oct 14, 2004 11:05 am    Post subject: Reply with quote

OOPs
That should have been upgrading to

xorg-x11-6.8.0-r1
and not 6.8.1
Back to top
View user's profile Send private message
HeadHolio
Guru
Guru


Joined: 10 Aug 2002
Posts: 445

PostPosted: Thu Oct 14, 2004 3:00 pm    Post subject: possible solution Reply with quote

Well, I ssh'd into my system (from work) and you were right, one is a zero length file. I overwrote the zero length file with the proper file....hopefully this does the trick for me too. I won't be able to check until I get home.
Back to top
View user's profile Send private message
MagnusBerg
Guru
Guru


Joined: 07 Oct 2003
Posts: 370
Location: Burgsvik, Gotland, Sweden

PostPosted: Thu Oct 14, 2004 3:27 pm    Post subject: Reply with quote

DarkStalker wrote:
I believe the Keyboard module was renamed to "kbd".


Small k in keyboard works for me. Maybe it's time to change to kbd.

But i got
Code:
Failed to load module "speedo" (module does not exist, 0)
.
Any solutions??? Or what is speedo good for???
Back to top
View user's profile Send private message
andersRson
n00b
n00b


Joined: 12 Jun 2003
Posts: 17
Location: Sweden

PostPosted: Thu Oct 14, 2004 6:25 pm    Post subject: Reply with quote

MagnusBerg: That's an old font system, not needed for most people these days. You can comment out the "load speedo" line in xorg.conf.
HeadHolio: This does'nt answer your question, but you should remove the "load dri" line from that file. It doesn't play nice with nvidia drivers.
Back to top
View user's profile Send private message
dsb
n00b
n00b


Joined: 09 Sep 2004
Posts: 30
Location: MO

PostPosted: Thu Oct 14, 2004 6:28 pm    Post subject: screen real estate Reply with quote

the new xorg does fill up all of my monitors area. I finally got a working conf, but looks like I have a 12 inch monitor.
Back to top
View user's profile Send private message
HeadHolio
Guru
Guru


Joined: 10 Aug 2002
Posts: 445

PostPosted: Thu Oct 14, 2004 8:08 pm    Post subject: Solved Reply with quote

cabbagewalker: That solved it, thanks!

andersRson: Done, thanks for the tip!
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum