Skip to content

Instantly share code, notes, and snippets.

@ByteProject
Last active March 14, 2021 12:54
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ByteProject/1bbdf8ec65eef7c4109e to your computer and use it in GitHub Desktop.
Save ByteProject/1bbdf8ec65eef7c4109e to your computer and use it in GitHub Desktop.
How to r/w Amiga FFS media in Ubuntu Linux
# HOW TO MOUNT AMIGA FFS MEDIA IN UBUNTU LINUX
# Linux comes with built-in support for Amiga FastFileSystem (AFFS).
# First we need to create a directory for mounting the partition.
sudo mkdir /media/AmigaMount
# Fire up fdisk to check the device name.
sudo fdisk -l
# My device is /dev/sdb. Using parted.
sudo parted /dev/sdb
# List Amiga partions on device.
p
# The partition I want is partition 1.
sudo mount -t affs /dev/sdb1 /media/AmigaMount
# That's it. Once you're done with moving files around you can
# unmount the partition again.
sudo umount /media/AmigaMount
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment