Page 111 of 142 FirstFirst ... 1161101109110111112113121 ... LastLast
Results 1,101 to 1,110 of 1415

Thread: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

  1. #1101
    Join Date
    Jun 2010
    Beans
    16

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    Sorry, but I just had a quick look at all 4 methods.

    Method 3 is out, .deb file, not sure how to get into an .rpm file?
    Method 1 says "This is a “general” script", well then what? I dont know what to do after that. But I known for sure I am right handed.

    Method 2 says "you can construct a right handed script or a left handed script", but how to construct. Well using method 1, but I dont even get method 1.

    Method 4, is out since I dont even have an xorg.conf.

    These 4 methods are just confusing one after the other.
    There are no steps that are clear enough.Frankly, they are just vague.

    Thanks! If possible I just need a script that I can download and double click and make rotation.
    that is all I want.

  2. #1102
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    Hi lazlo1,

    Method 4 doesn't require an xorg.conf. It uses the swivel hinge switch, either with a script or a program/applet called Magick Rotation.

    Using Method 1:
    Code:
    #!/bin/sh 
    
    # Find the line in "xrandr -q --verbose" output that contains current screen orientation and "strip" out current orientation. 
    
    rotation="$(xrandr -q --verbose | grep 'connected' | egrep -o  '\) (normal|left|inverted|right) \(' | egrep -o '(normal|left|inverted|right)')" 
    
    # Using current screen orientation proceed to rotate screen and input tools. 
    
    case "$rotation" in 
        normal) 
    #    -rotate to the right 
        xrandr -o right 
        xsetwacom set stylus rotate  CW 
        xsetwacom set touch rotate CW 
        xsetwacom set eraser rotate CW  
        ;; 
        right) 
    #    -rotate to normal 
        xrandr -o normal 
        xsetwacom set stylus rotate NONE 
        xsetwacom set touch rotate NONE 
        xsetwacom set eraser rotate NONE 
        ;; 
    esac
    1)Create a text file on the desktop called '.rotate.sh' (it will be a hidden file). Into it place the script above and save. The period in front of the name is mandatory.
    2)Right click on the text file. In the permissions tab check the “Allow executing file as a program” and close.
    3)Next create a launcher on the desktop. Give it a name and in the Command box type the path to the text file you made executable.
    Note: when you clean up the desktop and move the script in the text file to say, your home or home/user directory, remember to change the path in the Launcher's command box to reflect the new path.
    4)Double click on the launcher's icon and watch the screen rotate! Check that your stylus, eraser, and touch are oriented and working correctly. Double click again and rotate back.
    5)If you want, move the launcher to a panel or to a dock, like Cairo-dock, and then a single click will rotate the screen.

    Depending on what version you have of linux (kernel) and linuxwacom you may have to rename stylus, eraser, and touch. See what X is calling them with:
    Code:
    xinput --list
    You can also use the ID number if it stays the same between reboots.

  3. #1103
    Join Date
    Jun 2010
    Beans
    16

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    Thank you very much for your time.
    I tried with the .rotate.sh and there is no calibration at all with the pen, the stylus and the eraser.
    I had to revert it back to normal by double clciking on it again...

    xinput --list
    ⎡ Virtual core pointer id=2 [master pointer (3)]
    ⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
    ⎜ ↳ Wacom ISDv4 93 eraser id=11 [slave pointer (2)]
    ⎜ ↳ Wacom ISDv4 93 id=12 [slave pointer (2)]
    ⎜ ↳ Wacom ISDv4 93 id=13 [slave pointer (2)]
    ⎜ ↳ SynPS/2 Synaptics TouchPad id=15 [slave pointer (2)]
    ⎜ ↳ Macintosh mouse button emulation id=16 [slave pointer (2)]
    ⎣ Virtual core keyboard id=3 [master keyboard (2)]
    ↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
    ↳ Power Button id=6 [slave keyboard (3)]
    ↳ Video Bus id=7 [slave keyboard (3)]
    ↳ Power Button id=8 [slave keyboard (3)]
    ↳ Sleep Button id=9 [slave keyboard (3)]
    ↳ CKF7073 id=10 [slave keyboard (3)]
    ↳ AT Translated Set 2 keyboard id=14 [slave keyboard (3)]
    ↳ HP WMI hotkeys id=17 [slave keyboard (3)]

    thanks,

  4. #1104
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    Hi lazlo1,

    stylus = Wacom ISDv4 93

    eraser = Wacom ISDv4 93 eraser = 11

    touch = Wacom ISDv4 93


    Your current version of linuxwacom has a bug and gives the same name for stylus and touch. You'll have to guess the ID # for touch and use that instead of the device name.

  5. #1105
    Join Date
    Jun 2010
    Beans
    16

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    I change the script to this and it worked. I mean I got all calibrations just fine.

    #!/bin/sh

    # Find the line in "xrandr -q --verbose" output that contains current screen orientation and "strip" out current orientation.

    rotation="$(xrandr -q --verbose | grep 'connected' | egrep -o '\) (normal|left|inverted|right) \(' | egrep -o '(normal|left|inverted|right)')"

    # Using current screen orientation proceed to rotate screen and input tools.

    case "$rotation" in
    normal)
    # -rotate to the right
    xrandr -o right
    xsetwacom set 13 rotate CW
    xsetwacom set 12 rotate CW
    xsetwacom set 11 rotate CW
    ;;
    right)
    # -rotate to normal
    xrandr -o normal
    xsetwacom set 13 rotate NONE
    xsetwacom set 12 rotate NONE
    xsetwacom set 11 rotate NONE
    ;;
    esac

  6. #1106
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    Great! Good work. And now you know how to use 'xinput --list'. With "Device names" remember you have to use the quotes around the names in the xsetwacom commands.

  7. #1107
    Join Date
    Jun 2010
    Beans
    16

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    I just tried it like this everything is fine but touch is erratic.
    I am not sure if this is the way it should be with the names.

    #!/bin/sh

    # Find the line in "xrandr -q --verbose" output that contains current screen orientation and "strip" out current orientation.

    rotation="$(xrandr -q --verbose | grep 'connected' | egrep -o '\) (normal|left|inverted|right) \(' | egrep -o '(normal|left|inverted|right)')"

    # Using current screen orientation proceed to rotate screen and input tools.

    case "$rotation" in
    normal)
    # -rotate to the right
    xrandr -o right
    xsetwacom set "Wacom ISDv4 93" rotate CW
    xsetwacom set "Wacom ISDv4 93" rotate CW
    xsetwacom set "Wacom ISDv4 93 eraser" rotate CW
    ;;
    right)
    # -rotate to normal
    xrandr -o normal
    xsetwacom set "Wacom ISDv4 93" rotate NONE
    xsetwacom set "Wacom ISDv4 93" rotate NONE
    xsetwacom set "Wacom ISDv4 93 eraser" rotate NONE
    ;;
    esac

  8. #1108
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    Can't do it that way because of the bug. Touch and stylus have to have different names or ID numbers. Otherwise you did it correctly and it would work for another version of wacom.ko, just not the default 0.8.4-4 in Lucid.

  9. #1109
    Join Date
    Jun 2010
    Beans
    16

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    I reverted it back to this. Since everytthing is calibrated just fine pen/stylus/touch..

    case "$rotation" in
    normal)
    # -rotate to the right
    xrandr -o right
    xsetwacom set 13 rotate CW
    xsetwacom set 12 rotate CW
    xsetwacom set 11 rotate CW
    ;;
    right)
    # -rotate to normal
    xrandr -o normal
    xsetwacom set 13 rotate NONE
    xsetwacom set 12 rotate NONE
    xsetwacom set 11 rotate NONE
    ;;
    esac

  10. #1110
    Join Date
    Jun 2010
    Beans
    16

    Re: HOW TO: Install a LinuxWacom Kernel Driver for Tablet PC's

    1-So, now is there a script like for 360 (rotating 90x4 times)?
    2-Pen button is not responding at all.(it is not a big deal though for me)
    3-You said bug, I am not sure, here is what I have regarding wacom drivers.

    $ yum search wacom

    Loaded plugins: download-order, fs-snapshot, keys, merge-conf, presto, protect-
    : packages, refresh-packagekit, remove-with-leaves, security
    ================================ Matched: wacom ================================
    wacomexpresskeys.x86_64 : Wacom ExpressKeys and Touch Strips configuration
    : utility
    xorg-x11-drv-wacom.x86_64 : Xorg X11 wacom input driver
    xorg-x11-drv-wacom-devel.i686 : Xorg X11 wacom input driver development package
    xorg-x11-drv-wacom-devel.x86_64 : Xorg X11 wacom input driver development
    : package


    *The i686 isnt installed, I dont need, it just came up with the search
    *When it rotates, the mouse doesnt., it still stays as in "normal". Is there anything that can be done for the mouse even though I dont use the mouse that much when rotated.
    *One last question: Is it possible to link rotation to the button located on the down right side of the screen.(button looks like circle arrow headed) then I dont need to double click, I lljust press the button and it rotates.
    Last edited by lazlo1; July 1st, 2010 at 03:27 AM.

Page 111 of 142 FirstFirst ... 1161101109110111112113121 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •