I have lost the ability to paste selected text with the mouse wheel button. It has worked before without problem, but one day it just stopped working. I cannot find anything in the System Settings to enable it.
I have a Fujitsu Celsius H730 laptop. The middle button on the trackpad does work to paste selected text. However my attached mouse does not. It is a Logitech M310 which uses the same USB stick as the keyboard Logitech K520.
I have tried plugging with the device USB stick in both the docking station and directly into the laptop.
djviking@machine:/etc/X11/xorg.conf.d> ls -1
00-keyboard.conf
00-keyboard.conf.backup
10-evdev.conf
10-libvnc.conf
11-evdev.conf
50-device.conf
50-monitor.conf
50-screen.conf
50-synaptics.conf
50-vmmouse.conf
50-wacom.conf
djviking@machine:/etc/X11/xorg.conf.d> cat 11-evdev.conf
Section "InputClass"
# Novell Bugs #597214, #780626, #843333, #861813
Identifier "Trackpoint Wheel Emulation"
MatchProduct "TPPS/2 IBM TrackPoint|ThinkPad USB Keyboard with TrackPoint"
MatchIsPointer "on"
Driver "evdev"
Option "EmulateWheel" "on"
Option "EmulateWheelButton" "2"
# Since middle button is in use now these button events need to be emulated (bnc#869097)
Option "Emulate3Buttons" "on"
EndSection
djviking@machine:/etc/X11/xorg.conf.d> cat 50-synaptics.conf
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
# Option "OptionName" "value"
#
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
Option "HorizEdgeScroll" "off"
# enable tap-to-click as default (bnc#722457)
Option "TapButton1" "1"
Option "TapButton3" "2"
Option "TapButton2" "3"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection
djviking@machine:/etc/X11/xorg.conf.d> cat 50-vmmouse.conf
Section "InputClass"
Identifier "vmmouse"
MatchIsPointer "on"
MatchTag "vmmouse"
Driver "vmmouse"
EndSection
djviking@machine:~> grep -i mouse /var/log/Xorg.0.log
20.505] (==) intel(0): Silken mouse enabled
20.633] (--) evdev: Logitech M310: Found 20 mouse buttons
20.633] (II) evdev: Logitech M310: Configuring as mouse
20.634] (II) XINPUT: Adding extended input device "Logitech M310" (type: MOUSE, id 12)
20.634] (II) config/udev: Adding input device Logitech M310 (/dev/input/mouse1)
20.635] (--) evdev: Logitech K520: Found 1 mouse buttons
20.635] (II) evdev: Logitech K520: Configuring as mouse
20.800] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[262173.744] (II) config/udev: Adding input device Logitech M310 (/dev/input/mouse1)
[262173.745] (--) evdev: Logitech M310: Found 20 mouse buttons
[262173.745] (II) evdev: Logitech M310: Configuring as mouse
[262173.745] (II) XINPUT: Adding extended input device "Logitech M310" (type: MOUSE, id 12)
[262173.777] (--) evdev: Logitech K520: Found 1 mouse buttons
[262173.777] (II) evdev: Logitech K520: Configuring as mouse
[262288.096] (II) config/udev: Adding input device Logitech M310 (/dev/input/mouse1)
[262288.097] (--) evdev: Logitech M310: Found 20 mouse buttons
[262288.097] (II) evdev: Logitech M310: Configuring as mouse
[262288.097] (II) XINPUT: Adding extended input device "Logitech M310" (type: MOUSE, id 12)
[262288.164] (--) evdev: Logitech K520: Found 1 mouse buttons
[262288.164] (II) evdev: Logitech K520: Configuring as mouse
I am using OpenSUSE 13.2, but have installed the latest Linux kernel 4.7.5 from repository.
http://download.opensuse.org/repositories/Kernel:/stable/standard/
Edit: I should have posted this under the Hardware section. Perhaps a moderator could move it there.