Showing posts with label problem. Show all posts
Showing posts with label problem. Show all posts

Sunday, April 27, 2008

Serial Wacom tablet setup

Goggling for a whole day, I’ve found out that my serial Wacom Intuos tablet would work with Keyspan usb-serial (usb-db9, or usb-com port) adapters. But they are quite expensive. The same time, there are whole bunch of adapters available everywhere for cheap, most of them are based on Prolific chip. So I’ve decided to take my chances with TRENDnet TU-S9. It does work with my Wacom! I suppose other Prolific based adapters should also work, however I can’t promise that.


Fix for the “Wacom tablet cannot be found” problem

This is how to get serial Wacom working with the latest (6.x series) drivers. It does not matter if you use the adapter or your machine has a serial port. Still, sometimes the drivers have hard time finding the tablet. The driver installs fine, but “Wacom tablet properties” in Control Panel could not see the tablet.

Here what you need to do:

  1. Uninstall Wacom drivers.

  2. Install your usb-serail adapter driver, if you are using one.

  3. Install the latest Wacom drivers (don’t worry, that the driver says it is for usb tablet and you have serial).

  4. Create a Wacom_Tablet.dat file with the following text:

    PrefsFileVersion 4
    DriverOn1Off0 1
    DriverLanguage 0
    LeftHandedMouse 0
    FunkyButtonMode 0
    NoStartWarnings 0
    HowManyTablets 1
    TabletType 0
    TabletModel 201
    CommPort COM1
    TabletOn1Off0 1
    TabletPhysicallyOn 1
    TabletFlags 0
    HowManyTransducers 0

    and change CommPort to the one, where your tablet is plugged in. For the usb-serial adapter users, open Control panel, System, Hardware tab, Device manager and check the com port number of your adapter.

  5. Copy this file to:

    %USERPROFILE%\Application Data\WTablet\Wacom_Tablet.dat

  6. Restart Wacom service.

    I recommend you to use a batch file for that. Name it wacom.bat and put the following

    net stop "TabletServiceWacom"
    net start "TabletServiceWacom"

  7. Reboot your computer.


If at this point the utility in Control Panel finds the tablet, but the tablet itself does not work. Check that com port number in %USERPROFILE%\Application Data\WTablet\Wacom_Tablet.dat have not changed.

Don’t worry if you’d get “New hardware found” message, just ignore it.

Once you unplug your tablet and then plug it back, most probably it won’t work. Run wacom.bat instead of a reboot and it would work.

Sunday, November 26, 2006

Adobe Acrobat Reader problem

This time I've run into a problem with Acrobat Reader. Once it had been installed, it keeps printing "expr: syntax error" in console.

To fix it, in acroread (/usr/bin/acroread) change line 418
echo $mfile| sed 's/libgtk-x11-\([0-9]*\).0.so.0.\([0-9]\)00.\([0-9]*\)\|\(.*\)/\1\2\3/g'

to
echo $mfile| sed 's/libgtk-x11-\([0-9]*\).0.so.0.\([0-9]*\)00.\([0-9]*\)\|\(.*\)/\1\2\3/g'

and line 644:
MIN_GTK_VERSION="240"

to
MIN_GTK_VERSION="2040"


Found here: https://fcp.surfsite.org/modules/newbb/viewtopic.php?topic_id=26864&forum=12&post_id=114769

Aside of it, you can use
/usr/local/Adobe/Acrobat7.0/Browser/install_browser_plugin
to install a plugin for a browser.

nvidia linux driver 2629 problem with NV2x cards

Nvidia released a new 9629 driver. Unfortunately it does not work with NV2x cards. As a proud owner of GeForce3, I've lost half a day trying to get it working. Hope they will it in a next release.

9626 beta works fine (up to a black window problem).