Can I reload xserver-xorg-input-mouse driver on the fly? For example, after I modify and recompile the source
1 Answer
In an email from Peter Hutterer, who maintains a lot of the Xorg input stack:
right now, you can't unload a module without restarting the server. patches to support that were floating around at some point but never got merged.
- Thanks, did you find this answer or actually mailed him?Jakub M.– Jakub M.2013-09-27 20:28:45 +00:00Commented Sep 27, 2013 at 20:28
- I mailed him about something else and asked this question as a side-note. If you really need it, you might be able to find those patches on the Xorg-devel list archive. I haven't looked...Andrew Lundin– Andrew Lundin2013-10-01 03:47:16 +00:00Commented Oct 1, 2013 at 3:47
xinput disable <device name>; rmmod psmouse(replace binary in/usr/lib/xorg/modules/input)modprobe psmouse; xinput enable <device name>. But I think it's still using the old driver. I must be missing something...