I solved this issue using 2 methods:
- Using PuTTY linux version:
clicking in both touchpad buttons I simulated the middle button.
Since Linux Mint distro I'm using had not this middle button simulation activated (The latest version of evdev, version 2.5, changed the default for the middle mouse button emulation code. This change has disabled emulation of the middle mouse button by clicking the left and right mouse buttons) I needed to enable it manually:
Enabling the middle mouse button emulation adding this to xorg.conf snippet:
Section "InputClass"
Identifier "middle button emulation class"
MatchIsPointer "on"
Option "Emulate3Buttons" "on"
EndSection
- Using PuTTY Windows version (I prefer this method since I do not need to change distro setting like Xorg, only Wine settings in order to connect to console serial ports):
Since wine handles com ports by having a link to the device (ie /dev/ttyUSB0), in the ~/.wine/dosdevices folder, this link would be created as follows, in order to update your wine profile configs:
ln -s /dev/ttyUSB0 ~/.wine/dosdevices/com1
I prefer this second method, since the copy paste works allways, do not need the middle button simulation and, the sherry in the top of the cake, it NEVER hangs (occasionally PuTTY for Windows hangs on some winXP installations, LOL).
Otherwise, in case you do not need/want to install wine, the first method is preferable.