Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I just installed Slack10.0. Ran xorgconfig, and have tried "Auto", "PS/2", and "Microsoft" for my mouse. It is a Logitech cordless ball mouse (older one, before the MX models came out). Anyway, when I startx, I have no mouse. I have tried hitting various key combinations to see if any menus will popup, but there is nothing (then again, I don't exactly know what keys to try)...
Any suggestions?
PS: only reason I can post this now is because I booted from an Ubuntu Live CD (which was a bad burn, apparently, and gives me no panels! haha, what luck)
Hope this helps,from gentoo docs,works for slackware;
Code:
Configuring your Mouse
If your mouse isn't working, you will first need to find out if it is detected by the kernel at all. PS/2 mice are (device-wise) seen as /dev/psaux. Other mice (like USBs) are seen as /dev/input (or /dev/input/mice). In either case you can check if the devices do represent your mouse by checking the output of those files when you move your mouse. To end the session press Ctrl-C.
Code Listing 4.5: Checking the device files
# cat /dev/input
(Don't forget to press Ctrl-C to end this)
If your mouse isn't detected, verify if all the necessary modules are loaded.
If your mouse is detected, fill in the device in the appropriate InputDevice section. In the next example you'll see we also set two other options: Protocol (which lists the mouse protocol to be used - most users will use PS/2 or IMPS/2) and ZAxisMapping (which allows for the mousewheel (if applicable) to be used).
Code Listing 4.6: Changing the mouse settings in Xorg
Section "InputDevice"
Identifier "TouchPad Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
EndSection
Run startx and be happy about the result :) Congratulations, you now (hopefully) have a working Xorg on your system. The next step is to remove this ugly lightweight window manager and use a high-feature one (or even a desktop environment) such as KDE or GNOME, but that's not part of this guide :)
Your welcome,you could try it like this
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
Before you do it search here and google may find how someone has
got it to work,good luck
yeah, after I posted here I looked around google and many sites said that if using a scroll-wheel you have to use IMPS/2 as the protocal. I changed it and it worked, then came back here to tell you and you suggested the same thing!
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.