Page 3 of 32 FirstFirst 1234513 ... LastLast
Results 21 to 30 of 320

Thread: Getting the HP tx2000z to work

  1. #21
    Join Date
    Nov 2005
    Beans
    313
    Distro
    Kubuntu 8.04 Hardy Heron

    Re: Getting the HP tx2000z to work

    Got it working. Just went straight into KDE Control Center and set the keys. Everything is cool now.

  2. #22
    Join Date
    Dec 2007
    Beans
    56
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Getting the HP tx2000z to work

    Wonderful. Glad to hear you got it working. By the way, how do you set keys up in VLC? Its interface isn't exactly the friendliest when it comes to custom keymappings...

    Also, how will I know when the wacom will work? What is the specific name of the device which will need to be supported by Linux Wacom in order to make it work?
    Say goodbye to the Blue Screen of Death-- Switch to Linux.

  3. #23
    Join Date
    Nov 2005
    Beans
    313
    Distro
    Kubuntu 8.04 Hardy Heron

    Re: Getting the HP tx2000z to work

    linuxwacom.org is the site to keep watch on. Look up Tablet PCs on it and it will list when it allows for USB enabled Tablet PCs. That's what we are lacking.

    As for VLC, you need to probably look that up on their website. I am not too sure since I never use it.

  4. #24
    Join Date
    Nov 2004
    Location
    New York State
    Beans
    76

    Re: Getting the HP tx2000z to work

    I will be the owner of a new tx2000z in a few days. Hopefully the Wacom is working soon. The Lenovo T61t has a serial touch screen/digitizer and that still isn't working in linux without patching sources and recompiling. I guess that we are all in this together, though!

    Has anybody got the native broadcom wireless driver working for this laptop?
    -------------------
    The Wombatorium

  5. #25
    Join Date
    Dec 2007
    Beans
    56
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Getting the HP tx2000z to work

    I wouldn't bother with the native drivers--the ndiSwrapper method is easy if you follow the steps in this post-- make sure to run lspci to ensure you have the same card as one of us, though.
    Say goodbye to the Blue Screen of Death-- Switch to Linux.

  6. #26
    Join Date
    Nov 2004
    Location
    New York State
    Beans
    76

    Re: Getting the HP tx2000z to work

    Luckily, a patch is being worked on specifically for our laptop. (Thank HP for rock bottom prices.)

    Bugtracker:
    http://sourceforge.net/tracker/index...6&atid=525127?

    Discussion:
    http://sourceforge.net/mailarchive/f...nuxwacom-devel

    I haven't had the time to monkey-fart with it this weekend. I wish you luck!
    -------------------
    The Wombatorium

  7. #27
    Join Date
    Nov 2004
    Location
    New York State
    Beans
    76

    Re: Getting the HP tx2000z to work

    WARNING: Your wacom digitizer will stop working every single time the kernel or xorg gets updated if you use this script. Even worse, Xorg will refuse to start if newly installed libraries aren't compatible with the ones that you compiled!!

    UPDATE: I updated this post. The new patch now includes touch screen support!!!

    UPDATE: Now includes eraser support and fixes the side button.

    If your cursor is laggy on the screen, then you are going to need to add noapic, noirqdebug, and irqpoll to your boot parameters. This will also fix the other usb issues that you may be experiencing.

    First you are going to need to download the latest development version of linuxwacom:

    Code:
    wget http://internap.dl.sourceforge.net/sourceforge/linuxwacom/linuxwacom-0.7.9-11.tar.bz2
    You will also need Andrew's unified patch:

    Code:
    wget -O usbtx2000z.patch http://linuxwacom.pastebin.com/pastebin.php?dl=f3d5b9e73
    You will need a proper development environment::

    Code:
    sudo apt-get install build-essential libx11-dev libxi-dev x11proto-input-dev xserver-xorg-dev
    Now it is time to extract, patch, compile, and install. I personally add the configure option --prefix=/usr instead of /usr/local. You have to manually install the kernel driver. FYI: If kernel versions change, then things may break.

    Code:
    tar xjvf linuxwacom-0.7.9-11.tar.bz2
    cd linuxwacom-0.7.9-11
    patch -p1 < ../usbtx2000z.patch
    ./configure --enable-wacom
    make
    sudo make install
    sudo rmmod wacom
    sudo cp src/2.6.24/wacom.ko /lib/modules/2.6.24-16-generic/kernel/drivers/input/tablet/wacom.ko
    sudo depmod -e
    sudo modprobe wacom
    sudo rm /usr/local/bin/xsetwacom
    Now you are ready to edit your xorg.conf! Run the following command to load it up:

    Code:
    sudo gedit /etc/X11/xorg.conf
    Now you are going to have to add sections for the Wacom input device.

    Code:
    Section "InputDevice"
        Identifier "TabletPCStylus"
        Driver "wacom"
        Option "ForceDevice" "ISDV4"
        Option "Type" "stylus"
        Option "SendCoreEvents" "true"	
        Option "Device" "/dev/input/by-id/usb-Tablet_ISD-V4-event-mouse"
        Option "Button2" "3"  # make side-switch a right button
    #  Option "TopX" "225"
       # Option "TopY" "122"
       # Option "BottomX" "26365"
       # Option "BottomY" "16488"
    EndSection
    
    Section "InputDevice"
    	Identifier "TabletPCStylus2"
    	Driver "wacom"
    	Option "ForceDevice" "ISDV4"
    	Option "Type" "stylus"
    	Option "SendCoreEvents" "true"
    	Option "Device" "/dev/input/wacom"
    EndSection
    
    Section "InputDevice"
        Identifier     "TabletPCStylus3"
        Driver         "wacom"
        Option         "ForceDevice" "ISDV4"
        Option         "Type" "eraser"
        Option         "SendCoreEvents" "true"
        Option         "Device" "/dev/input/by-id/usb-Tablet_ISD-V4-event-mouse"
    EndSection
    and you will need to add the devices to your server layout:

    Code:
    Section "ServerLayout"
            Identifier      "Default Layout"
      screen "Default Screen"
            Inputdevice     "Synaptics Touchpad"
            Inputdevice     "TabletPCStylus"
            Inputdevice     "TabletPCStylus2"
           Inputdevice     "TabletPCStylus3"
    EndSection
    Section "Module"
            Load            "glx"
    EndSection
    There is a calibration script at http://www.stanford.edu/~gi1242/per/opensource/hp2710p/. It doesn't really work well because it calibrates all devices at once. Therefore your touch screen gets the same calibration as your stylus.

    EDITED 04/17 to use a unified patch for the digitizer AND touchscreen.
    EDITED 04/20 to include eraser support and fix the side button.
    EDITED 04/27 to point to the right devices in xorg.conf.
    Last edited by TomtheWombat; May 14th, 2008 at 02:14 PM.
    -------------------
    The Wombatorium

  8. #28
    Join Date
    Nov 2005
    Beans
    313
    Distro
    Kubuntu 8.04 Hardy Heron

    Re: Getting the HP tx2000z to work

    That's awesome. I don't know how gutsy I am to try that out but I may just do that in a few. Hopefully this will eventually get working to the way we all want it.

  9. #29
    Join Date
    Nov 2004
    Location
    New York State
    Beans
    76

    Re: Getting the HP tx2000z to work

    There isn't really much chance of breaking anything. I wouldn't reccomend doing it yet unless you want to help figure things out, though. The stylus is pretty much useless with the lag and lack of calibration.
    -------------------
    The Wombatorium

  10. #30
    Join Date
    Nov 2004
    Location
    New York State
    Beans
    76

    Re: Getting the HP tx2000z to work

    In order to eliminate the lag, edit /boot/grub/menu.lst and add the parameters 'irqpoll noirqdebug' to the main kernel you boot off of right behind noapic. This will also enable your usb2.0 ports

    P.S. I missed linux the past week!
    -------------------
    The Wombatorium

Page 3 of 32 FirstFirst 1234513 ... LastLast

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
  •