Posted on Leave a comment

Ultimate Boot CD for Windows 3.50 out with 1 error

If you ever have to do some serious troubleshooting on a Windows XP machine, you need the Ultimate Boot CD (Linux version) and the Ultimate Boot CD (Windows version) (see also Ben Burrows blog). The windows version recently released version 3.50 and may have an error. If you get the following error message:

Section:SourceDiscsFolders.2600
Cannot find folder: wnt5
Section:SourceDiscsFolders.2600
Cannot find folder: wxp

Then follow these instructions. In summary:

Click the Plugins button.
Select # DriverPacks.net – BASE
Press the EDIT button.
Change: CONFIG=DPs_BASE.exe /API: /settings:
To: CONFIG=DPs_BASE.exe /settings:
[Source, ubcd4win forum, hilander999]

Posted on 2 Comments

Ubuntu Accomplishments – Seesmic Desktop Install

The machine on which I do most of my work is not terribly robust. My work environment would make a good premise for a Disney movie..you know..old clunker equipment doesn’t look like it should be able to pull through manages to win the race. Anyway, Seesmic Desktop in all it’s glory was dragging this machine down. Everything would work fine but I needed one more reboot than normal throughout the day. On days like today, when the work was too intense, I just couldn’t run Seesmic Desktop (maybe not a bad thing). Now that I’ve successfully installed Seesmic Desktop on Ubuntu, it can run all the time and I can occasionally glance over at the streams to see what’s happening. Installing Seesmic Desktop on Ubuntu was incredibly easy. First install Adobe Air then install Seesmic Desktop:

  1. Open the Terminal
  2. Use wget to download http://airdownload.adobe.com/air/lin/download/1.5/AdobeAIRInstaller.bin
  3. Set the file to be executable: chmod +x AdobeAIRInstaller.bin
  4. Run it: sudo ./AdobeAIRInstaller.bin
  5. Accept any AIR updates
  6. Use wget to download Seesmic Desktop from http://d.seesmic.com/seesmic/SeesmicDesktop-0.2.1.air
  7. On the Ubuntu desktop, not terminal, look under Applications->Accessories or Applications->Other for Adobe AIR Application Installer and run it
  8. Select SeesmicDesktop-0.2.1.air and the normal Seesmic Desktop installer will run

That’s it! Frankly, I think Seesmic Desktop is performing much better on Ubuntu than Windows. My only complaint would be that it failed to put a shortcut in the Applications menu.

Update: I lamented that Seesmic Desktop needed an import/export feature to get userlists and data from one computer to another and @askseesmic responded with a document explaining now to move the xml file with the necessary data. It worked great! The userlists I had organized on Windows now are on Linux. Move the xml file from one machine to the other after backing up the original:

  • Max OS X:
    /Users/<username>/Library/Preferences/com.seesmic.desktop.client.<RANDOM>/Local Store/config/xmlAdapter.xml
  • Windows XP:
    C:\Documents and Settings\<username>\Application Data\com.seesmic.desktop.client.<RANDOM>\Local Store\config\xmlAdapter.xml
  • Windows Vista & Windows 7:
    C:\Users\<username>\AppData\Roaming\com.seesmic.desktop.client.<RANDOM>\Local Store\config\xmlAdapter.xml
  • Ubuntu & most Linux distros:
    /home/<user>/.appdata/com/seesmic.desktop.client.<RANDOM>/Local Store/config/xmlAdapter.xml

[Source, Seesmic Help Desk, Transferring Settings between Computers – workaround]

Posted on Leave a comment

Ubuntu Accomplishments – Wacom Tablet

I have two Wacom tablets that I use for my art. My first tablet ever was a Wacom UD-Digitizer II serial tablet. I’m not even sure USB was around back then. This tablet was unbelievable at the time! Felt like I was writing on paper with a real pen or brush. Being able to use an eraser on the computer was remarkable. However, there were certain problems with its size, roughly 5×7, so I bought a Wacom Intuos serial tablet that is more like 12×10 inches. Tablets make computer art fun!

When I set aside a new machine for a replacement Linux server for my in-house development, I decided to actually use Ubuntu Desktop 8.04 and install Apache-MySQL-PHP on it afterwards. I’ve found myself using the Linux Desktop more and I think I can eventually migrate completely from Windows. Unfortunately, the computer I chose to do this with uses a mechanical mouse instead of an optical mouse. You know, one with the mouse ball that constantly needs cleaning. The mechanical mouse holds me back more than anything else from making the switch. Ergo, I decided to pull the Wacom Digitizer II out of the boneyard and see if I could get it to work. It was surprisingly simple.

Two support documents helped make quick work of getting the tablet functioning. 1) The community documentation for Wacom and 2) The community documentation for Wacom troubleshooting. The first gave me this simple line:

sudo apt-get install xserver-xorg-input-wacom wacom-tools

The tablet failed to work. The second explained that I needed to update /usr/bin/dexconf which would then rebuild /etc/X11/xorg.conf with these lines:

Section "InputDevice"
      Driver "wacom"
      Identifier "stylus"
      Option "Device" "/dev/input/wacom" # USB ONLY?
      # Option "Device" "/dev/ttyS0" # SERIAL ONLY
      Option "Type" "stylus"
      # Option "ForceDevice" "ISDV4" # Tablet PC ONLY
      Option "USB" "on" # USB ONLY
EndSection

Section "InputDevice"
      Driver "wacom"
      Identifier "eraser"
      Option "Device" "/dev/input/wacom" # USB ONLY?
      # Option "Device" "/dev/ttyS0" # SERIAL ONLY
      Option "Type" "eraser"
      # Option "ForceDevice" "ISDV4" # Tablet PC ONLY
      Option "USB" "on" # USB ONLY
EndSection

Section "InputDevice"
      Driver "wacom"
      Identifier "cursor"
      Option "Device" "/dev/input/wacom" # USB ONLY?
      # Option "Device" "/dev/ttyS0" # SERIAL ONLY
      Option "Type" "cursor"
      # Option "ForceDevice" "ISDV4" # Tablet PC ONLY
      Option "USB" "on" # USB ONLY
EndSection

Section "InputDevice"
      Driver "wacom"
      Identifier "pad"
      Option "Device" "/dev/input/wacom" # USB ONLY
      # Option "Device" "/dev/ttyS0" # SERIAL ONLY
      Option "Type" "pad"
      Option "USB" "on" # USB ONLY
EndSection

# Uncomment the following section if you you have a TabletPC that supports touch
# Section "InputDevice"
# Driver "wacom"
# Identifier "touch"
# Option "Device" "/dev/ttyS0" # SERIAL ONLY
# Option "Device" "/dev/input/wacom" # USB ONLY
# Option "Type" "touch"
# Option "ForceDevice" "ISDV4" # Serial Tablet PC ONLY
# Option "USB" "on" # USB ONLY
# EndSection

Naturally I would have to comment out the USB references and uncomment the serial references. Then the serverlayout section had to look like:

Section "ServerLayout"
      Identifier "Default Layout"
      Screen "Default Screen"
      InputDevice "stylus" "SendCoreEvents"
      InputDevice "eraser" "SendCoreEvents"
      InputDevice "cursor" "SendCoreEvents" # For non-LCD tablets only
      InputDevice "pad" # For       Intuos3/CintiqV5/Graphire4/Bamboo tablets
      # InputDevice "touch" "SendCoreEvents" # Only a few TabletPCs support this type
EndSection

I rebooted and nothing happened. I realized /usr/bin/dexconf was a script and ran it. Upon rebooting I was stuck in VGA mode. This was looking like a failed experiment. On a whim I decided to make the changes directly to /etc/X11/xorg.conf and surprisingly, the tablet came to life! GIMP is suddenly fun to use!

Posted on 2 Comments

There’s power in that command line

There is something wonderfully satisfying about using PUTTY to secure shell into a server and manipulate the server and websites at the command line. When I’m about to make major changes, this is one way I backup the site which of course is far faster than ftping a copy of the site to another machine.

PuTTY is a terminal emulator application which can act as a client for the SSH, Telnet, rlogin, and raw TCP computing protocols. The name “PuTTY” has no definitive meaning[1], though ‘tty’ is the name for a terminal in the Unix tradition, usually held to be short for teletype. [Source, Wikipedia, PuTTY]