広告 Mac

Macでシリアル接続をする方法

Win端末だとteratermで楽にシリアル接続できますが、Macだといまいちやり方わからなかったので調べてみました。

今回は、ioData製のUSBシリアルケーブルを使って、スイッチに接続します。

MacにUSBシリアルケーブルを接続する前に、ttyデバイスを確認してみます。

% ls -l /dev/tty.*
crw-rw-rw-  1 root  wheel   18,   0  7 26 16:18 /dev/tty.Bluetooth-Incoming-Port

次に、USBシリアルケーブルを接続してttyデバイスを確認してみます。

% ls -l /dev/tty.*
crw-rw-rw-  1 root  wheel   18,   0  7 26 16:18 /dev/tty.Bluetooth-Incoming-Port
crw-rw-rw-  1 root  wheel   18,   2  7 26 16:20 /dev/tty.usbserial

/dev/tty.usbserial ってのが出ましたね!

では、cuコマンドを使って、スイッチに接続してみます。

% cu -l /dev/tty."usbserial"
cu: creat during lock (/var/spool/uucp/TMP0000000d7f in /Users/ibayuki as uid 503): Permission denied
cu: /dev/tty.usbserial: Line in use

おっと、root権限が必要なのね……

では気を取り直して

% sudo cu -l /dev/tty."usbserial"
Password:
Connected.


Connected at 9600 baud

ypdate
ProCurve J9279A Switch 2510G-24
Software revision Y.11.12

Copyright (C) 1991-2009 Hewlett-Packard Co.  All Rights Reserved.

                           RESTRICTED RIGHTS LEGEND

 Use, duplication, or disclosure by the Government is subject to restrictions
 as set forth in subdivision (b) (3) (ii) of the Rights in Technical Data and
 Computer Software clause at 52.227-7013.

         HEWLETT-PACKARD COMPANY, 3000 Hanover St., Palo Alto, CA 94303

We'd like to keep you up to date about:
  * Software feature updates
  * New product announcements
  * Special events

Please register your products now at:  www.ProCurve.com




Press any key to continue

つながった!

Macでもシリアル接続楽勝ですね!

Sponsor Link

-Mac