KnoppixでHotsync

LavieJのKnoppixCLIEHotsyncできるか試してみた。
 まず、JPilotをインストール。
 USBコードを接続して、CLIEを起動。dmesgを確認してみると。


ohci_hcd 0000:00:0d.0: remote wakeup
usb 1-3: new full speed USB device using address 2
drivers/usb/serial/usb-serial.c: USB Serial support registered for Generic
usbcore: registered new driver usbserial
drivers/usb/serial/usb-serial.c: USB Serial Driver core v2.0
drivers/usb/serial/usb-serial.c: USB Serial support registered for Handspring Visor / Palm OS
drivers/usb/serial/usb-serial.c: USB Serial support registered for Sony Clie 3.5
drivers/usb/serial/usb-serial.c: USB Serial support registered for Sony Clie 5.0
visor 1-3:1.0: Sony Clie 5.0 converter detected
usb 1-3: Sony Clie 5.0 converter now attached to ttyUSB0 (or usb/tts/0 for devfs)
usb 1-3: Sony Clie 5.0 converter now attached to ttyUSB1 (or usb/tts/1 for devfs)
usbcore: registered new driver visor
drivers/usb/serial/visor.c: USB HandSpring Visor / Palm OS driver v2.1
usb 1-3: USB disconnect, address 2
clie_5 ttyUSB0: Sony Clie 5.0 converter now disconnected from ttyUSB0
clie_5 ttyUSB1: Sony Clie 5.0 converter now disconnected from ttyUSB1
visor 1-3:1.0: device disconnected
ということできちんと認識。良い感じ!
 早速JPilotを起動して同期ボタンを押してみたら

****************************************
バイス/dev/pilotで同期します。
HotSyncボタンを押してください
****************************************
pi_bind 無効な引数です
シリアルポートの設定を確認してください
状態 SYNC_ERROR_BIND で終了しました
完了
・・・やな感じ(--;
 いろいろしらべてみたら、どうも「/dev/pilotはCLIEとつながってないよ」と言いたいらしい。もうちょっと親切なエラーメッセージにして欲しいよな。
 そこで、

$ ls -al /dev/pilot
としてみたら

lrwxrwxrwx 1 root root 5 2004-10-06 16:27 pilot -> ttyS0
・・・接続していたのは、ttyUSB0とttyUSB1だよなぁ。
というわけで、

# rm /dev/pilot
rm: remove シンボリックリンク `pilot'? y
# ln -s /dev/ttyUSB0 /dev/pilot
としたらシンクロできました!