SlackwareThis Forum is for the discussion of Slackware Linux.
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.
Alright. I'm a complete newbie to the entire linux world. I chose slackware because I wanted to get the feel for a real linux distro without all the extremely user friendly features. I'm starting to think I made the wrong decision because I just can't get this to work. I had a problem getting KDE to load at all at first, but now it will load, but the mouse won't work. It sits at the top for the most part and goes crazy. I have a MS Intellimouse USB adapted to PS/2 port. I use xf86config and have tried basically every mouse config in the list. None of them seemed to work right for it. My keyboard is USB and that seems to be working fine, so right now I'm going to try the mouse with USB. I doubt it will work because I'm using the bare kernal. Any help would be great.
I am assuming it is Slackware 8.1 runing XFree86 version 4. The configuration file is in the /etc/X11 directory. It is called XF86Config. There is a section that handles the mouse pointer. It is usually set to the device /dev/mouse. That device is just a symlink. If it is set incorrectly then X would be reading the wrong device. X can also be configured to read the device directly if desired. You have to look to see what it is actually using. For PS/2 mouse the device port would be /dev/psaux and for USB mouse the device port would be /dev/input/mouse0. The /dev/mouse symlink can be changed to anything really, use a command something like;
ln -sf /dev/input/mouse0 /dev/mouse
or
ln -sf /dev/psaux /dev/mouse
There is also another important parameter and it is called the protocol. The standard default mouse config would be PS/2 I think. Yours would use IMPS/2 as the protocol, even if USB port. That has to be set in the XF86Config file.
There are some additional settings you will probably like to add as well. I have provided the pointer section from my XF86Config as a guideline below.
The resolution setting I have found to be a great help with high resolution screens, 1024x768 or higher. Reduces my arm fatigue. The last two settings are provided for wheel mouse support.
Not sure how you have the USB keyboard running on the bare.i kernel. When I tried to switch I couldn't login. I had to conenct the PS/2 kb and then load the modules for the USB kb to get it to work. But for USB mouse and USB keyboard support I would recommend loading the following modules. I use the /etc/rc.d/rc.local file to load my modules. Others seem to like /etc/rc.d/rc.modules file. The commands here load the modules and some others that are needed.
The modules usbcore and input will be autoloaded as well.
Perhaps it will provide the assistance that you desire. If you are using a USB keyboard you might want to switch to the usb.i kernel. In the event of a system failure and the modules can't be loaded you might not have keyboard control. The usb.i kernel includes all the features from the modules above.
thanks a lot for your help.. i'll get to it and post back. I dont know how to edit files directly but i won't pester you because I know theres documentation around. thanks again.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.