LinuxQuestions.org
Have you listened to LQ Radio?
Go Back   LinuxQuestions.org > Forums > Linux > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices

Tags used in this thread
Popular LQ Tags ,

Reply
 
Thread Tools
Old 08-18-2009, 05:11 AM   #1
kmacphail
Member
 
Registered: Jan 2009
Location: Isle of Lewis
Distribution: Ubuntu 9.10 & Fedora 12
Posts: 79
Thanked: 2
Cursor frozen on Toorox 6.2009


[Log in to get rid of this advertisement]
I have recently been trying a new distro called Toorox (version 6.2009 with KDE 4.2.4). This is a Gentoo based distro from germany. The LiveCD worked fine and after a couple of hours of playing about with it I decided to install it onto my system.

However I have run into a problem: after booting the optical mouse's light comes on, and stays on, and the cursor on the screen is frozen. I have tried rebooting, and moving the mouse to another USB port, but so far this has made no difference.

I hope that somebody can help as it seems such a simple problem.

Last edited by kmacphail; 08-18-2009 at 05:39 AM..
kmacphail is offline  
Tag This Post ,
Reply With Quote
Old 08-18-2009, 11:50 AM   #2
business_kid
Member
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware 122/Slamd64
Posts: 733
Thanked: 45
Try posting your mouse configuration from xorg.conf
business_kid is offline     Reply With Quote
Old 08-18-2009, 11:56 AM   #3
kmacphail
Member
 
Registered: Jan 2009
Location: Isle of Lewis
Distribution: Ubuntu 9.10 & Fedora 12
Posts: 79
Thanked: 2

Original Poster
Here is the relevant part of my xorg.conf

[quote]Section "ServerLayout"
Identifier "XFree86 Configured"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
# PS/2 Mouse not detected
# Serial Mouse not detected
InputDevice "USB Mouse" "CorePointer"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "de"

EndSection

#Section "InputDevice"
# Identifier "Serial Mouse"
# Driver "mouse"
# Option "Protocol" "Microsoft"
# Option "Device" "/dev/ttyS0"
# Option "Emulate3Buttons" "true"
# Option "Emulate3Timeout" "70"
# Option "SendCoreEvents" "true"
#EndSection

Section "InputDevice"
Identifier "PS/2 Mouse"
Driver "mouse"
Option "Protocol" "auto"
Option "ZAxisMapping" "4 5"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "true"
Option "Emulate3Timeout" "70"
Option "SendCoreEvents" "true"
EndSection

Section "InputDevice"
Identifier "USB Mouse"
Driver "evdev"
Option "Device" "/dev/input/mice"
Option "SendCoreEvents" "true"
Option "Protocol" "auto"
Option "ZAxisMapping" "4 5"
Option "Buttons" "5"
EndSection
[quote]
kmacphail is offline     Reply With Quote
Old 08-18-2009, 12:47 PM   #4
kmacphail
Member
 
Registered: Jan 2009
Location: Isle of Lewis
Distribution: Ubuntu 9.10 & Fedora 12
Posts: 79
Thanked: 2

Original Poster
OK I just spotted something else, I assumed that it was simply the mouse that was not working however, it also appears that the keyboard is not loading either. The desktop does not respond to any key press, however I am noticing that pressing "Num Lock" or "Caps Lock" does not switch on the LEDs on the keyboard either.

I do not think it has crashed as the analogue clock widget on the KDE desktop is still ticking.
kmacphail is offline     Reply With Quote
Old 08-19-2009, 04:01 AM   #5
business_kid
Member
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware 122/Slamd64
Posts: 733
Thanked: 45
Sounds like usb trouble. Connections, or modules. Sometimes ohci & uchi modules load & can conflict. You need one or the other. You don't have a via chipset, do you? I used get spurious 'o/c change' repeatedly from the usb-2.0 driver and about 2.6.19 they put in an option
options ehci_hcd ignore_oc=1
for /etc/module.d/ which fixed it.
business_kid is offline     Reply With Quote
Old 08-19-2009, 12:48 PM   #6
kmacphail
Member
 
Registered: Jan 2009
Location: Isle of Lewis
Distribution: Ubuntu 9.10 & Fedora 12
Posts: 79
Thanked: 2

Original Poster
Well the USB problem would explain the mouse, however my keyboard is not USB, just the standard connection.

My chip is AMD 64 athlon X2 (2.8 dual core).

You have lost me a wee bit with the last line, are you telling me to create a file in /etc/module.d/ called options with the line ehci_hcd ignore_oc=1

Sorry if this seems dumb, I am still a relative newbie.
kmacphail is offline     Reply With Quote
Old 08-19-2009, 01:30 PM   #7
kmacphail
Member
 
Registered: Jan 2009
Location: Isle of Lewis
Distribution: Ubuntu 9.10 & Fedora 12
Posts: 79
Thanked: 2

Original Poster
Well the USB problem would explain the mouse, however my keyboard is not USB, just the standard connection.

My chip is AMD 64 athlon X2 (2.8 dual core).

You have lost me a wee bit with the last line, are you telling me to create a file in /etc/module.d/ called options with the line ehci_hcd ignore_oc=1

Sorry if this seems dumb, I am still a relative newbie.
kmacphail is offline     Reply With Quote
Old 08-19-2009, 04:21 PM   #8
business_kid
Member
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware 122/Slamd64
Posts: 733
Thanked: 45
You have an amd Athlon (Have one myself) and a lot of the motherboards here use via chipset. If you have a via chipset (try the command 'lspci' which tells you) just copy and paste the line

echo "options ehci_hcd ignore_oc=1" >> /etc/modprobe.d/ehci_hcd

into a terminal as root. Also add
ohci_hcd

to /etc/modprobe.d/blacklist
business_kid is offline     Reply With Quote
Old 08-19-2009, 05:29 PM   #9
kmacphail
Member
 
Registered: Jan 2009
Location: Isle of Lewis
Distribution: Ubuntu 9.10 & Fedora 12
Posts: 79
Thanked: 2

Original Poster
Thanks for all your help business_kid, but after speaking to somebody, they had a similar problem which was a fault during installation. I reinstalled the system and it is now working (woo hoo!).

Anybody else that tries this distro beware: it may be a dodgy install.
kmacphail is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] [X Error on Debian] could not open default cursor font 'cursor' sl33p Linux - Newbie 4 07-30-2009 04:25 PM
KDE 4 pad cursor frozen on bootup chibi2666 *BSD 1 06-10-2009 01:56 AM
Hide mouse cursor/change cursor location? mrjamin Linux - Software 3 05-13-2009 12:54 PM
NX Error: Could not open default cursor font 'cursor' mickeyboa Fedora 0 02-11-2008 01:44 AM
Could not open default cursor font 'cursor' at startx with slackware 10.2 bgryderclock Slackware 3 01-02-2006 11:36 PM


All times are GMT -5. The time now is 11:47 AM.

Main Menu
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration