Table of Contents

Overview

Revived my Amiga 500, after 20 years. Samsung monitor has a scart connector, just right for the Amiga. I got a serial connection between Linux↔Amiga setup, and can transfer adf disk images to the Amiga, directly writing them to df0.

Canonical Amigashell commands

command meaning
endcli ends current terminal session
cd / return to root directory
dir directory listing
status processlist ('ps ax' on Linux)
break 2 ends process 2, “break 2 all” sends all break commands

File transfer via AmigaBasic

This follows one of the ideas from here, and copies the AmigaBASIC interpreter to the ramdisk.

cd/
copy c/copy ram:
copy c/dir ram:
# change disk to Basic disk
cd df0:
ram:dir
ram:copy AmigaBASIC ram:

File transfer via serial

### pc
apccomm -s /dev/ttyUSB0 --speed 19200 Stateart.adf

### Amiga
# Boot workbench, execute shell
copy c/copy ram:
copy c/dir ram:
# put the disk containing apccom-nogui in the drive (I use the Basic disk)
ram:copy df0:apccom-nogui ram:
# put the workbench disk in the drive
apccom-nogui --serial --speed 19200 -d

Ideas/problems