Atari 8-bit emulator atari800 for Fedora Linux

atari800 is a GNU GPL licensed Atari 8-bit emulator that runs on many operating systems. It was written by David Firth and the Atari800 Development Team. As of this writing (March 24th, 2025), atari800 is available for Fedora Linux 41 from the official repositories.

You can simply do:

dnf -y install atari800

I know next to nothing about Atari 800 and the related Atari 8-bit computers, but the emulator seems to run just fine. I tested it by loading Blue Max disk image and by playing the game.

However, due to some fucking lame copyright issues, atari800 does not ship with original Atari system ROMs. So grab my RPM package:

To install the required atari800 system ROMs, become root and issue command:

rpm -Uvh /path/to/downloaded/atari-system-roms-1.0.0-1.noarch.rpm

I have a following simple shell wrapper for running atari800 in ~/bin/a800:

#!/bin/bash

/usr/bin/atari800 -atari -stretch 2 -osb_rom /usr/local/atari800/sysroms/ATARIOSB.ROM -basic_rom /usr/local/atari800/sysroms/ATARIBAS.ROM "$*" &

To run the emulator and automatically load Blue Max game, drop root privileges and issue command:

a800 /path/to/downloaded/bluemax.atr.gz

Be patient. You need to wait for a while until the game has been loaded from the virtual disk drive.

atari800 recognized my Logitech RumblePad 2 USB controller without problems. I could use it like Atari joystick, cool!

On a real Atari 8-bit computer, you would press the START key to start Blue Max. But PCs do not have such a key! No worries, here is the atari800 emulator's keyboard mapping table:

Atari keyPC key
OPTIONF2
SELECTF3
STARTF4

So to start Blue Max under atari800 emulation, just press F4 on your PC keyboard.

If you do not have a USB controller, atari800 has "keyboard joystick" mapped to Atari joystick port 0:

Atari joystick port 0PC key
LEFTNumpad 4
RIGHTNumpad 6
DOWNNumpad 5
UPNumpad 8
BUTTONRight CTRL

GAMING TIP: In Blue Max, you can drop bombs by pointing joystick DOWN ja pressing BUTTON.

Have fun!

blue max atari 800

Best regards,
Kalevi Kolttonen <kalevi@kolttonen.fi>