LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   USB mouse and keyboard not working after ubuntu 8.10 upgrade (https://www.linuxquestions.org/questions/linux-newbie-8/usb-mouse-and-keyboard-not-working-after-ubuntu-8-10-upgrade-681284/)

philosophia 11-05-2008 08:19 AM

USB mouse and keyboard not working after ubuntu 8.10 upgrade
 
Hardware: Dell Optiplex GX620, usb keyboard and mouse running through an OmniView usb kvm switch

My usb mouse and keyboard are not working after upgrading from 8.04 to 8.10. Ubuntu 'loading' bar during bootup looks weird now - it's cut off and split into two bars. I also have some error messages during bootup

Code:

usb device not accepting address 13, error -71
unable to enumerate usb device on port 5
...
unable to set system time to: ...

I've tried running dpkg-reconfigure to reset xorg.conf, no change. Any suggestions?

TB0ne 11-06-2008 08:35 AM

Quote:

Originally Posted by philosophia (Post 3332401)
Hardware: Dell Optiplex GX620, usb keyboard and mouse running through an OmniView usb kvm switch

My usb mouse and keyboard are not working after upgrading from 8.04 to 8.10. Ubuntu 'loading' bar during bootup looks weird now - it's cut off and split into two bars. I also have some error messages during bootup

Code:

usb device not accepting address 13, error -71
unable to enumerate usb device on port 5
...
unable to set system time to: ...

I've tried running dpkg-reconfigure to reset xorg.conf, no change. Any suggestions?

Have you tried bypassing the KVM, and seeing if it's detected then?

eZe Livin 11-06-2008 05:53 PM

I am having the same problem.
 
The laptop upgraded but the tower does not want to know.
My keyboard and mouse are ps2 connected
I have 3 bars loading on my screen.
I cannot re install the operating system, however the keyboard does work on the boot and recovery options.
Any ideas? Help.

philosophia 11-07-2008 07:13 AM

Quote:

Originally Posted by TB0ne (Post 3333432)
Have you tried bypassing the KVM, and seeing if it's detected then?

If I disconnect the keyboard/mouse from the hub and plug them directly in, they're still not detected, but the bootup errors disappear.

philosophia 11-07-2008 07:51 AM

I just at the release notes and saw the X.Org Input Devices section

http://www.ubuntu.com/getubuntu/releasenotes/810

running dpkg-reconfigure console-setup did not fix the problem, though.

Any suggestions?

philosophia 11-07-2008 08:55 AM

I just discovered something - the ubuntu upgrade documents advise you to apply 8.04 upgrades before performing an 8.10 upgrade. I didn't do this. Is there any way to fix without reinstalling?

eZe Livin 11-08-2008 10:56 AM

I did the 8.04 upgrade first so i do not think this is the issue.

amani 11-08-2008 11:13 AM

Put in a proper xorg.conf file for your system in /etc/X11/

and DO ADD

Section "ServerFlags"
Option "AutoAddDevices" "off"
EndSection


If you have a 8.04 file with modelines, that will be fine

philosophia 11-10-2008 08:42 AM

I tried this, I get the same errors when I reboot. I tried plugging my usb mouse and keyboard directly into the computer, they still don't work. I'm copying my current xorg.conf below.

Should I reinstall? Seems a waste if this is just an xorg problem.

Code:

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#  sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerFlags"
Option "AutoAddDevices" "off"
EndSection

Section "Files"
        FontPath        "/usr/share/X11/fonts/misc"
        FontPath        "/usr/share/X11/fonts/cyrillic"
        FontPath        "/usr/share/X11/fonts/100dpi/:unscaled"
        FontPath        "/usr/share/X11/fonts/75dpi/:unscaled"
        FontPath        "/usr/share/X11/fonts/Type1"
        FontPath        "/usr/share/X11/fonts/100dpi"
        FontPath        "/usr/share/X11/fonts/75dpi"
        FontPath        "/usr/share/fonts/X11/misc"
        # path to defoma fonts
        FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
        Load        "bitmap"
        Load        "ddc"
        Load        "dri"
        Load        "extmod"
        Load        "freetype"
        Load        "glx"
        Load        "int10"
        Load        "vbe"
EndSection

# commented out by update-manager, HAL is now used
Section "InputDevice"
        Identifier        "Generic Keyboard"
        Driver                "kbd"
        Option                "CoreKeyboard"
        Option                "XkbRules"        "xorg"
        Option                "XkbModel"        "pc104"
        Option                "XkbLayout"        "us"
EndSection

# commented out by update-manager, HAL is now used
Section "InputDevice"
        Identifier        "Configured Mouse"
        Driver                "mouse"
        Option                "CorePointer"
        Option                "Device"                "/dev/input/mice"
        Option                "Protocol"                "ExplorerPS/2"
        Option                "ZAxisMapping"                "4 5"
        Option                "Emulate3Buttons"        "true"
EndSection

# commented out by update-manager, HAL is now used
Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
EndSection

# commented out by update-manager, HAL is now used
Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
EndSection

# commented out by update-manager, HAL is now used
Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/wacom"          # Change to
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
EndSection

Section "Device"
        Identifier        "Intel Corporation 945G Integrated Graphics Controller"
        Driver                "intel"
        BusID                "PCI:0:2:0"
EndSection

Section "Monitor"
        Identifier        "Generic Monitor"
        Option                "DPMS"
        HorizSync        28-80
        VertRefresh        43-60
EndSection

Section "Screen"
        Identifier        "Default Screen"
        Device                "Intel Corporation 945G Integrated Graphics Controller"
        Monitor                "Generic Monitor"
        DefaultDepth        24
        SubSection "Display"
                Depth                1
                Modes                "1600x1200" "1280x768" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                4
                Modes                "1600x1200" "1280x768" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                8
                Modes                "1600x1200" "1280x768" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                15
                Modes                "1600x1200" "1280x768" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                16
                Modes                "1600x1200" "1280x768" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth                24
                Modes                "1600x1200" "1280x768" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection

Section "ServerLayout"
        Identifier        "Default Layout"
        Screen                "Default Screen"
# commented out by update-manager, HAL is now used
        InputDevice        "Generic Keyboard"
# commented out by update-manager, HAL is now used
        InputDevice        "Configured Mouse"
# commented out by update-manager, HAL is now used
        InputDevice    "stylus" "SendCoreEvents"
# commented out by update-manager, HAL is now used
        InputDevice    "cursor" "SendCoreEvents"
# commented out by update-manager, HAL is now used
        InputDevice    "eraser" "SendCoreEvents"
EndSection

Section "DRI"
        Mode        0666
EndSection


Quote:

Originally Posted by amani (Post 3335428)
Put in a proper xorg.conf file for your system in /etc/X11/

and DO ADD

Section "ServerFlags"
Option "AutoAddDevices" "off"
EndSection


If you have a 8.04 file with modelines, that will be fine


philosophia 11-12-2008 07:43 AM

bump? anyone?

philosophia 11-12-2008 02:58 PM

https://bugs.launchpad.net/ubuntu/+s...er/+bug/254840

this fixed my problem - copying my original xorg.conf

dagrimreefah 02-24-2009 10:33 PM

Posting this at the end of my /etc/X11/xorg.conf fixed this issue for me:

Quote:

Section "ServerFlags"
Option "AutoAddDevices" "false"
EndSection
It disables hotplugging for your mouse and keyboard, but it oh well. As long as it works.

JerryClinton 08-20-2011 09:04 PM

Don't feel bad I'm having a similar problem after upgrading my motherboard its been a pain in the ass.. I get the same message in kubuntu in windows I get unknown device which any hardware program I've use says the is no problem but wont read off the usb -.- be it my wireless keyboard and mouse are usb stick I have 10 usb ports evga 780i FTW the rest of the chipset works fine the bus that the ethernet's on the same bus as the usb port, the ethernets work fine I ve went to great lengths as updating the bios, problem persists, I can only conclude to being a address problem in the bios, I know for a fact the usb ports all 10 are not shorted in any way as it detects plug in play in windows, but reads it as unknown, Even so I used mt case's usb and I get the same problem, I know its bios address because it wont boot off usb bootable are let me use usb keyboard and mouse and 1.1 and 2.0 are enabled, does anyone know how to fix this problem? the responses I get have a been stupid responses please help lol

amani 08-30-2011 11:27 AM

@JerryClinton please start a new thread instead of digging up an old thread.


All times are GMT -5. The time now is 02:06 PM.