sudo apt-get install minicom
Now you need to check your serial ports using the following command from your terminal
dmesg|grep ttyS
In my case I have a USB to Serial converter for my laptop that has no serial connectors. For this I had to check for:
dmesg|grep tty
You should see similar to the following output:
[ 0.000000] console [tty0] enabled[ 0.327050] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A[ 0.327417] 00:02: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A[ 77.928931] usb 3-4: pl2303 converter now attached to ttyUSB0
This means the device correspond to my serial port is ttyUSB0 (if an actual serial port it should be ttyS0).
Configure minicom using the following command
sudo minicom -s
Use the keyboard keys to select the menu item Serial port setup.
Enter A to change the Serial Device to /dev/ttyS0, and then enter E to change the line speed to 9600 8N1
Using arrow keys, select Save setup as dfl
Select Exit from Minicom.
Next time, from the terminal you only need to run sudo minicom in order to access your Cisco box or you make the user a member of the ‘dialout’ group. Then you don’t have to run minicom with sudo after the initial default configuration. The Dialout group owns all of the serial ports in Ubuntu.PS - Above info ripped from: http://www.ubuntugeek.com/minicom-hyperterminal-replacement-in-ubuntu.html

