matsuyama@Grissom:~$ modprobe -l | grep pl2303 kernel/drivers/usb/serial/pl2303.ko
$sudo aptitude install minicom
ボーレート:19200 文字サイズ:8ビット パリティ:なし ストップビット:1ビット
comBIOS ver. 1.28 20050529 Copyright (C) 2000-2005 Soekris Engineering. net4801 0128 Mbyte Memory CPU Geode 266 Mhz Pri Mas 128MB ATA Flash Disk LBA 977-8-32 125 Mbyte Slot Vend Dev ClassRev Cmd Stat CL LT HT Base1 Base2 Int ------------------------------------------------------------------- 0:00:0 1078 0001 06000000 0107 0280 00 00 00 00000000 00000000 0:06:0 100B 0020 02000000 0107 0290 00 3F 00 0000E101 A0000000 10 0:14:0 168C 001B 02000001 0116 0290 08 3C 00 A0010000 00000000 11 0:15:0 168C 001B 02000001 0116 0290 08 3C 00 A0020000 00000000 05 0:18:2 100B 0502 01018001 0005 0280 00 00 00 00000000 00000000 0:19:0 0E11 A0F8 0C031008 0117 0280 08 38 00 A0030000 00000000 09 comBIOS Monitor. Press ? for help. >以下のコマンドでボーレートが変更できます。電源をぬき差しして、再度起動すると変更されます。
> set ConSpeed=57600
$remountrw $vi /boot/grub/menu.lst default 0 timeout 3 serial --device=/dev/ttyS0 --speed=19200 --word=8 --parity=no --stop=1 terminal serial title RMR_Thinktube Partition 1 root (hd0,0) kernel /boot/vmlinuz root=/dev/hda1 console=ttyS0,19200n8speedやconsoleの19200をすべて57600に変更。
default 0 timeout 3 serial --device=/dev/ttyS0 --speed=57600 --word=8 --parity=no --stop=1 terminal serial title RMR_Thinktube Partition 1 root (hd0,0) kernel /boot/vmlinuz root=/dev/hda1 console=ttyS0,57600n8
$remountrw $vi /etc/inittab以下の行を探します。
# Example how to put a getty on a serial line (for a terminal) # T0:23:respawn:/sbin/getty -L ttyS0 19200 vt100 #T1:23:respawn:/sbin/getty -L ttyS1 9600 vt100これを57600に変更。
T0:23:respawn:/sbin/getty -L ttyS0 57600 vt100
再起動したらターミナルソフトのボーレートも57600に変更しておきます。ifconfigコマンドなどで出力が早くなったのを確認してみてください。BIOSの設定を変更したく無い場合には2,3だけ変更してもOKです。(ただし、BIOSの画面で文字化けします)
RMRには標準でsshデーモンが起動しているため、sshクライアントを用いてリモートログインが可能です。以下に各OSのsshクライアントを紹介しておきます。また、デフォルトではユーザー、パスワード共にrootになっています。
$sudo aptitude install ssh $ssh root@192.168.91.1