This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifdef SHELL | |
gcc -Wall -Werror $0 && ./a.out | |
exit $? | |
#endif | |
#include <stdio.h> | |
#include <unistd.h> | |
#include <string.h> | |
#include <stdlib.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |