LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-12-2005, 06:47 PM   #1
linuxhippy
Senior Member
 
Registered: Sep 2004
Location: Philadelphia, PA
Distribution: Xubuntu, Mythbuntu, Lubuntu, Picuntu, Mint 18.1, Debian Jessie
Posts: 1,207

Rep: Reputation: 47
laptop touchpad disable??


Is there a way to disable the touchpad in Slack 10 on laptop?

I'm using an external ps/2 3 button mouse all the time anyway. I didn't see anything in xorg.conf that referred to a touchpad. There's only one pointer device (a symbolic link to /dev/psaux).

There isn't an option for that in my laptop's setup.

Last edited by linuxhippy; 03-12-2005 at 07:15 PM.
 
Old 03-12-2005, 10:21 PM   #2
artificialGekko
Member
 
Registered: Mar 2005
Posts: 77

Rep: Reputation: 15
The touchpad seems to be referred to as "mouse" in the xorg.config as well as any regular mouse - the one on my laptop appears in the config-file like this:

Section "InputDevice"
Identifier "Alps GlidePoint PS/2"
Driver "mouse"
Option "Protocol" "GlidePointPS/2"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons"
EndSection

You could perhaps try and comment out (#) those lines and see if it disables the touchpad. Eventually it'll instead crash the computer when you try to run XServer, so make sure to backup your original xorg.config and know how to revert the changes you made on console...

I hope this helps in any way.
 
Old 03-13-2005, 08:37 AM   #3
artificialGekko
Member
 
Registered: Mar 2005
Posts: 77

Rep: Reputation: 15
Ok, I tinkered around with it a bit more and found a way that works. Basically #ing out that device was ok with my system, when I first tried that out yesterday it'd crash my computer, but then I didn't have any other mouse set up yet so I guess it just crashed because it didn't have any pointer at all. Or whatever

But now I have my xorg.config like this and it works fine, mouse complete with all buttons and scrollwheel works, touchpad not:

Code:
Section "ServerLayout"
     Identifier "X.org Configured"
     Screen 0 "Screen0" 0 0
#    InputDevice "Alps GlidePoint PS/2" "CorePointer"  ## TOUCHPAD DISABLED
     InputDevice "Mouse0" "AlwaysCore"
     InputDevice "Keyboard0" "CoreKeyboard"
EndSection
.
.
.
Section "InputDevice"       ## REGULAR MOUSE SUPPOSED TO WORK
     Identifier "Mouse0"
     Driver "mouse"
     Option "Protocol" "IMPS/2"
     Option "Device" "dev/input/mice"
     Option "Buttons" "5"
     Option "ZAxisMapping" "4 5"
     Option "Emulate3Buttons" "no"
EndSection

#Section "InputDevice"     ## TOUCHPAD #ED OUT
#     Identifier "Alps GlidePoint PS/2"
#     Driver "mouse"
#     Option "Protocol" "GlidePointPS/2"
#     Option "Device" "/dev/psaux"
#     Option "Emulate3Buttons"
#EndSection
 
Old 03-13-2005, 01:46 PM   #4
dennisk
Member
 
Registered: May 2004
Location: Southwestern USA
Distribution: CentOS
Posts: 279

Rep: Reputation: 30
You can
Code:
startx
with different config files see the startx man page for details, so you can have one configuration that uses your external mouse and another that uses the touchpad. Nice way to test custom configs as well.

Dennisk
 
Old 03-13-2005, 07:01 PM   #5
linuxhippy
Senior Member
 
Registered: Sep 2004
Location: Philadelphia, PA
Distribution: Xubuntu, Mythbuntu, Lubuntu, Picuntu, Mint 18.1, Debian Jessie
Posts: 1,207

Original Poster
Rep: Reputation: 47
artificialGekko, I cut & pasted your part of xorg.conf but got errors. I commented out lines to get my X session to work so I could get on the net. Touchpad and ps2 mouse still both work. Here's my input section of xorg.conf so you know that nothing will conflict:

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

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

Section "InputDevice"

Identifier "Keyboard1"
Driver "Keyboard"


EndSection


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

# Section "InputDevice"

Section "ServerLayout"
Identifier "X.org Configured"
Screen 1 "Screen1" 0 0
# InputDevice "Alps GlidePoint PS/2" "CorePointer" ## TOUCHPAD DISABLED
InputDevice "Mouse0" "AlwaysCore"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "InputDevice" ## REGULAR MOUSE SUPPOSED TO WORK
Identifier "Mouse0"
Driver "/dev/mouse"
Option "Protocol" "IMPS/2"
# Option "Device" "dev/input/mice"
# Option "Buttons" "5"
# Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "no"
EndSection

#Section "InputDevice" ## TOUCHPAD #ED OUT
# Identifier "Alps GlidePoint PS/2"
# Driver "mouse"
# Option "Protocol" "GlidePointPS/2"
# Option "Device" "/dev/psaux"
# Option "Emulate3Buttons"
#EndSection

# Protocol "PS/2"
# Device "/dev/psaux"
# Emulate3Buttons
# Emulate3Timeout 100
# EndSection


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

# Any number of monitor sections may be present

Section "Monitor"

Identifier "My Monitor"

HorizSync 31.5 - 50.0

VertRefresh 40-90

EndSection

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


Section "Device"
Identifier "VESA Framebuffer"
Driver "vesa"
#VideoRam 4096
# Insert Clocks lines here if appropriate
EndSection

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

Section "Screen"
Identifier "Screen 1"
Device "VESA Framebuffer"
Monitor "My Monitor"


Subsection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubsection
Subsection "Display"
Depth 32
Modes "1024x768" "800x600" "640x480"
EndSubsection

EndSection

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


Section "ServerLayout"


Screen "Screen 1"

# InputDevice "Mouse1" "CorePointer"
# InputDevice "Keyboard1" "CoreKeyboard"

EndSection


Last edited by linuxhippy; 03-14-2005 at 04:06 AM.
 
  


Reply



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
How to disable touchpad? simanyay SUSE / openSUSE 12 06-26-2007 04:42 AM
disable touchpad MicahCarrick Linux - Laptop and Netbook 0 07-18-2004 07:23 PM
How to disable touchpad? jimbo Linux - Laptop and Netbook 3 04-04-2004 09:06 AM
disable synaptic touchpad ljpete Linux - Newbie 1 01-31-2004 05:42 AM
disable synaptic touchpad ljpete Linux - Distributions 0 01-30-2004 09:59 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:04 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