De todos es sabido que con el wine podemos lanzar este soft. Pero despues del proceso de instalación me puse a ejecutar este programa sin resultados positivos, asi que lo lanze desde consola y obtuve el siguiente resultado:
X Error of failed request: BadDevice, invalid or uninitialized input device
Major opcode of failed request: 145 (XInputExtension)
Minor opcode of failed request: 3 (X_OpenDevice)
Serial number of failed request: 35
Current serial number in output stream: 35
La solución para este problema es sencilla solamente hay que comentar los inputs relacionados con wacom en el fichero de configuración de las X.
sudo vim /etc/X11/xorg.conf
Localizamos las siguientes lineas y las comentamos todas añadiendo al principio ‘#’
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/wacom" # Change to
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/wacom"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/wacom"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection
Y también las siguientes lineas referentes a cursor, eraser, stylus
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
EndSection
Ahora solo falta reiniciar el servidor de las X con el conjunto de teclas CTRL+ALT+BACKSPACE, y ya el programa se deberÃa ejecutar normalmente.