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 |
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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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.
|
 |
07-05-2006, 12:27 PM
|
#1
|
LQ Newbie
Registered: May 2005
Location: Stockholm, Sweden
Distribution: Ubuntu 6.06 Dapper Drake Beta
Posts: 29
Rep:
|
Looking for a good Linux compatible laptop mouse...
Hi,
I own a Acer Travelmate 3012WTMI laptop and have Kubuntu Dapper 6.06 installed on it. It's a nice computer, but like most other laptops, the only pointing device it has is its built-in touchpad. It's a quite good touchpad, but I feel like I want a real mouse too; I just work better with one.
So, what I'm trying to get to is;
Does anybody here know of any good Linux compatible, wireless laptop mice (preferably laser ones)?
Thanks,
Talyz
|
|
|
07-05-2006, 01:25 PM
|
#2
|
Member
Registered: Jul 2004
Location: The Netherlands
Distribution: Mandrake, Knoppix, Coyote Linux, RedHat
Posts: 354
Rep:
|
I believe you should be quite safe with just about any USB based optical mouse nowadays.
You might like the Logitech V400 Laser Cordless Mouse for Notebooks, all the wireless perks plus an improved laser tracking system and self-storing USB connector.
I currently own a slightly older Logitech MX1000 Cordless Laser mouse which works fine in any Linux distro, and it's the best mouse i've ever had.
|
|
|
07-05-2006, 04:37 PM
|
#3
|
LQ Newbie
Registered: May 2005
Location: Stockholm, Sweden
Distribution: Ubuntu 6.06 Dapper Drake Beta
Posts: 29
Original Poster
Rep:
|
I was actually thinking about getting one of those, but since I couldn't find any information about Linux compatibility, I'm not quite sure. It would feel a little stupid to buy such an exclusive mouse, just to find out that it's not compatible with Linux...
|
|
|
07-06-2006, 04:08 PM
|
#4
|
Member
Registered: Jul 2004
Location: The Netherlands
Distribution: Mandrake, Knoppix, Coyote Linux, RedHat
Posts: 354
Rep:
|
Well tell you what. I'm planning on buying it myself within the next week or so when I get a chance and i'll let you know what happens :P 
|
|
|
07-06-2006, 04:17 PM
|
#5
|
LQ Newbie
Registered: May 2005
Location: Stockholm, Sweden
Distribution: Ubuntu 6.06 Dapper Drake Beta
Posts: 29
Original Poster
Rep:
|
Really? Great! Thanks!
BTW, I just read on the Logitech site that it's plug n' play compatible, so I guess that kind of means it will work just fine in Linux... 
Last edited by Talyz; 07-06-2006 at 04:19 PM.
|
|
|
07-07-2006, 06:00 AM
|
#6
|
Member
Registered: Dec 2005
Location: ~/
Distribution: Ubuntu
Posts: 156
Rep:
|
Linux usually doesn't care what mouse you have. I was thinking of picking up the MX1000 mainly because of the docking station, laser track, and that everyone I know who has one LOVES it. He has used the MX1000 on almost all platforms. Mac, Linux, and Windows. I'm currently using a generic mouse and I have no problem. Linux even recognizes it as a Logitech mouse.
Code:
~$ lsusb | grep Logitech
Bus 002 Device 003: ID 046d:c00e Logitech, Inc. Optical Mouse
|
|
|
07-07-2006, 06:58 AM
|
#7
|
LQ Newbie
Registered: May 2005
Location: Stockholm, Sweden
Distribution: Ubuntu 6.06 Dapper Drake Beta
Posts: 29
Original Poster
Rep:
|
I know; all mice I've tested so far has worked just great in Linux. I just want to be sure before I buy one, since it will be too late to give it back if I've already tried it...
|
|
|
07-10-2006, 02:02 PM
|
#8
|
Member
Registered: Jul 2004
Location: The Netherlands
Distribution: Mandrake, Knoppix, Coyote Linux, RedHat
Posts: 354
Rep:
|
My V400 is in the mail, should arrive either at the end of the week or next monday.
|
|
|
07-10-2006, 03:51 PM
|
#9
|
Member
Registered: May 2005
Location: North Carolina
Distribution: Gentoo
Posts: 123
Rep:
|
The mouse really doesn't matter. Just know that if it has extra buttons (other than right/left/scroll) you will have to add a line to your xinitrc of xmodmap -e pointer="x x x x " to map the buttons correctly so that the extra buttons will do something. If you want them to do special stuff, then you will have to you imwheel or something like that to put a command with the buttons. It is easy to do just kinda tricky if you don't know what you are doing.
|
|
|
07-11-2006, 08:29 AM
|
#10
|
LQ Newbie
Registered: May 2005
Location: Stockholm, Sweden
Distribution: Ubuntu 6.06 Dapper Drake Beta
Posts: 29
Original Poster
Rep:
|
Great news!
kg4ysy: Unfortunately, I have no experience in editing any of those files or using imwheel, but maybe I can find a guide somewhere on the net...
|
|
|
07-11-2006, 10:04 AM
|
#11
|
Member
Registered: May 2005
Location: North Carolina
Distribution: Gentoo
Posts: 123
Rep:
|
Basically once you find the mouse you want, plug it in and type xev in a terminal. A little window will pop up. Put you mouse in the window and press every button. Write down what is what and post that information here and I will let you know what you need to put in your xorg.conf and use as your xset pointer thing...my mouse is a 7 button mouse with the scroll wheel counting as three buttons (up/down/click).
/etc/X11/xorg.conf
Code:
32 Section "InputDevice"
33 Identifier "Mouse0"
34 Driver "mouse"
35 Option "Protocol" "ExplorerPS/2"
36 Option "Device" "/dev/input/mice"
37 Option "ZAxisMapping" "6 7"
38 Option "Buttons" "7"
39 Option "Emulate3Buttons" "yes"
40 EndSection
add a line like this to /etc/X11/xinit/xinitrc
xmodmap -e "pointer = 1 2 3 8 9 4 5 6 7 10 11"
for some reason when I reinstalled the buttons changed, but we will have to tailor this to how your mouse is detected.
Let us know when you get that mouse.
|
|
|
07-12-2006, 02:35 PM
|
#12
|
LQ Newbie
Registered: May 2005
Location: Stockholm, Sweden
Distribution: Ubuntu 6.06 Dapper Drake Beta
Posts: 29
Original Poster
Rep:
|
|
|
|
07-18-2006, 11:31 AM
|
#13
|
Member
Registered: Jul 2004
Location: The Netherlands
Distribution: Mandrake, Knoppix, Coyote Linux, RedHat
Posts: 354
Rep:
|
Oi, went round the corner have you? :P
Anyway, I have the mouse now and it's working just fine. I'm not worried about the extra buttons myself but if I have a spare moment I may tinker with kg4ysy's suggestion and see what I can come up with.
Coming from an MX1000, the shape of the V400 does give you a slightly awkward feeling in your hand since it's much smaller and angular, but after 2 hours of playing games, who notices? 
|
|
|
All times are GMT -5. The time now is 09:37 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|