A pseudoterminal (pty) will be created on launch of FreeBee. The file serial-pty
in the current directory will be symlinked to the pty (e.g. /dev/pts/?). This will be the proxy for /dev/tty000 (the built-in serial port) on the 3b1.
- 3b1: Make sure getty is running on tty000
- Boot FreeBee and run
setgetty 000 1
as root
- Boot FreeBee and run
- Linux: Run terminal emulator pointed at our pty
- Install package "minicom", "picocom", "putty", or "screen" (minicom recommended)
- Then run:
- Minicom:
minicom -D ./serial-pty
- To quit: Ctrl-A + Q
- Picocom:
picocom --omap delbs --send-cmd "sx -vv" --receive-cmd "rx -vv" ./serial-pty
- To quit: Ctrl-A + Ctrl-Q
- Putty:
putty -serial ./serial-pty
- To backspace: use Shift-Backspace (or configure to send ^H)
- Screen:
screen ./serial-pty
- To quit: Ctrl-A + \
- Minicom:
- Once a serial connection has been made, files can be transferred via Xmodem
- If using Picocom, "rzsz" (or "lrzsz") package must be installed and "--send-cmd" and "--receive-cmd" parameters specified on cmd line (see above)
- Sending a local file to 3b1
- Initiate receive on 3b1 with:
umodem -rb <filename>
- Then quickly select file to send:
- Minicom: Ctrl-A + s, select xmodem
- Picocom: Ctrl-A + Ctrl-S
- Initiate receive on 3b1 with:
- Receiving a file from 3b1
- Send file on 3b1 with:
umodem -sb <filename>
- Then quickly receive file with:
- Minicom: Ctrl-A + r, select xmodem
- Picocom: Ctrl-A + Ctrl-R
- Send file on 3b1 with:
- 3b1: Make sure getty is NOT running on tty000
- Boot FreeBee and run
setgetty 000 0
as root
- Boot FreeBee and run
- 3b1: Add the line "DIR tty000 0 9600" to /usr/lib/uucp/L-devices as root
- e.g. as root:
echo "DIR tty000 0 9600" >> /usr/lib/uucp/L-devices
- e.g. as root:
- Linux: Run
sudo agetty pts/? vt100
where pts/? is the pty linked to by ./serial-pty- e.g. if serial-pty -> /dev/pts/2, run
sudo agetty pts/2 vt100
- e.g. if serial-pty -> /dev/pts/2, run
- 3b1: Run
cu -l tty000
to connect to your Linux machine- Login to your Linux machine - when done, exiting your Linux shell should also end the agetty
- If you'd like to login again, run the agetty command again
- When done with cu, enter
~.
+ Enter to exit cu
- 3b1: Make sure getty is NOT running on tty000
- Boot FreeBee and run
setgetty 000 0
as root
- Boot FreeBee and run
- 3b1:
- Download kermit binary if not already present on your system
- Run
kermit -l /dev/tty000
- At
C-Kermit>
prompt:- Receive file with
receive
- Send file with
send <filename>
- Receive file with
- Linux:
- Install package "gkermit"
- Send file with
gkermit -s <filename> > ./serial-pty < ./serial-pty
- Receive file with
gkermit -r > ./serial-pty < ./serial-pty