LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > 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


Reply
  Search this Thread
Old 07-02-2003, 07:34 AM   #1
tgarland
LQ Newbie
 
Registered: Jul 2003
Posts: 4

Rep: Reputation: 0
ctrl/alt f1 solves my touchpad problem - why?


Mandrake 8.2 on Sony Vaio.

I screwed up my touchpad and usbmouse set up by choosing to run usb.init on boot and have been regretting it ever since. I've managed to get mytouchpad back (partially anyway). I don't know how or why but when I boot and get my X splahscreen the touchpad goes bannas pulling to the left - can't do anything with it. When I use ctrl/alt/F1 and then switch back using ctrl/alt/F3 all is well again with the touchpad. The usb is still not working. why does does the ctrl/alt thing solve this problem and how can I get back to the original situation when the touchpad was working on the X splashscreen first time?
 
Old 07-02-2003, 08:08 AM   #2
jpbarto
Senior Member
 
Registered: Mar 2003
Location: Pittsburgh, PA
Distribution: Gentoo / NetBSD
Posts: 1,251

Rep: Reputation: 45
could there possibly be a change made to your /etc/X11/XF86Config file in the mouse configuration section? That it is being solved by ctrl-alt-f3 -> ctrl-alt-f1 -> ctrl-alt-f3 sounds rather odd to me and I've never seen anything quite like that. What does the usb.init script do exactly?
 
Old 07-02-2003, 08:52 AM   #3
tgarland
LQ Newbie
 
Registered: Jul 2003
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by jpbarto
could there possibly be a change made to your /etc/X11/XF86Config file in the mouse configuration section? That it is being solved by ctrl-alt-f3 -> ctrl-alt-f1 -> ctrl-alt-f3 sounds rather odd to me and I've never seen anything quite like that. What does the usb.init script do exactly?
Right. I did seem to have screwed up my XF86Config-4 file. I've managed to fix that and usb is working again although I still have to ctrl/alt/f1 to get the touchpad working. Not sure why F3 gets me back to the console as opposed to F7. ucb.init is a script that is supposed to manage the loading of usb drivers. I always have it switched off though and switched it on this morning whilst trying to getting hot plug working. That's what caused all my woes. I've switched it back off again. I just need to solve my touchpad problem and I'll be back to where I left off - 8 hours ago! Thanks for your help.
 
Old 07-02-2003, 09:10 AM   #4
jpbarto
Senior Member
 
Registered: Mar 2003
Location: Pittsburgh, PA
Distribution: Gentoo / NetBSD
Posts: 1,251

Rep: Reputation: 45
F7 is not universal. If you look at your /etc/inittab file it will define how many consoles (text consoles) to start. Typical practice has been to create 6 consoles (F1 - F6) which leaves F7 - F12 for virtual (X11) consoles. However with more and more linux systems being single user desktop systems the practice is changing for slightly added security. In other words in /etc/inittab there are probably only two text consoles being started (F1 - F2) and thus leaving the rest for virtual consoles.

"I did seem to have screwed up my XF86Config-4 file. I've managed to fix that and usb is working again"

XF86Config-4 affected your USB? What does the 'mouse' device section of XF86Config-4 look like?
 
Old 07-02-2003, 09:28 AM   #5
tgarland
LQ Newbie
 
Registered: Jul 2003
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by jpbarto
F7 is not universal. If you look at your /etc/inittab file it will define how many consoles (text consoles) to start. Typical practice has been to create 6 consoles (F1 - F6) which leaves F7 - F12 for virtual (X11) consoles. However with more and more linux systems being single user desktop systems the practice is changing for slightly added security. In other words in /etc/inittab there are probably only two text consoles being started (F1 - F2) and thus leaving the rest for virtual consoles.

"I did seem to have screwed up my XF86Config-4 file. I've managed to fix that and usb is working again"

XF86Config-4 affected your USB? What does the 'mouse' device section of XF86Config-4 look like?


# **********************************************************************
# Pointer section
# **********************************************************************

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
EndSection


Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Device" "/dev/mouse"
Option "Protocol" "PS/2"
Option "Emulate3Buttons" "off"
Option "ZAxisMapping" "4 5"
EndSection
 
Old 07-02-2003, 09:30 AM   #6
tgarland
LQ Newbie
 
Registered: Jul 2003
Posts: 4

Original Poster
Rep: Reputation: 0
Quote:
Originally posted by tgarland
# **********************************************************************
# Pointer section
# **********************************************************************

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
EndSection


Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Device" "/dev/mouse"
Option "Protocol" "PS/2"
Option "Emulate3Buttons" "off"
Option "ZAxisMapping" "4 5"
EndSection

sorry make that:

# **********************************************************************
# Pointer section
# **********************************************************************

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
EndSection


Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Device" "/dev/input/mice"
Option "Protocol" "PS/2"
Option "Emulate3Buttons" "off"
Option "ZAxisMapping" "4 5"
EndSection [/B][/QUOTE]
 
Old 07-02-2003, 09:43 AM   #7
jpbarto
Senior Member
 
Registered: Mar 2003
Location: Pittsburgh, PA
Distribution: Gentoo / NetBSD
Posts: 1,251

Rep: Reputation: 45
you said this is a laptop right? The protocol section of the first one is set to 'IMPS/2'... this is for scroll mice. So unless the mouse on your laptop has a scroll wheel I would get rid of that entire first section. Plus I'm not an expert by any means on XF86Configs... however I'm pretty sure that two inputdevice sections with the same identifier 'Mouse1' is bad. I would remove the first entry such that the only mouse section is defined as follows...

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "device" "/dev/mouse"
Option "Protocol" "PS/2"
Option "Emulate3Buttons" "on"
EndSection

hope that helps,
jpbarto
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
dark screen when pressing Ctrl + Alt + Backspace or Ctrl + Alt F1-F6 in Gnome or KDE trinoo Slackware 5 01-28-2005 08:13 AM
Switching window focus (like alt+tab in windows) and Ctrl+Alt+F1 X windows problem... DiZASTiX Linux - Software 3 01-20-2005 04:56 PM
Terminal change (Ctrl+Alt+F1 to F7) problem mehlkelm Debian 8 09-26-2004 05:11 PM
Lifebook S6210, ctrl+alt+F* problem Karasu Linux - Laptop and Netbook 0 05-24-2004 06:41 AM
ctrl+alt+fn problem petarsabev Slackware 4 09-30-2003 05:02 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 01:55 PM.

Main Menu
Advertisement
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
Twitter: @linuxquestions
Open Source Consulting | Domain Registration