RXTX glitch and fix

I was setting up the Java RXTX library on a new machine today, and kept getting 'port in use' exceptions. Turns out to be a lockfile issue, the fix is to make the directory and flag it writable:

 mkdir /var/lock
 chmod 1777 /var/lock

yeesh.