Skip to content

Instantly share code, notes, and snippets.

View scigghia's full-sized avatar
🎯
Focusing

Andrea Cometa scigghia

🎯
Focusing
View GitHub Profile
@ByteProject
ByteProject / amigaffs_ubuntu.sh
Last active March 14, 2021 12:54
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.
@dideler
dideler / upgrade-postgres-9.3-to-9.4.md
Last active June 8, 2020 03:24
Upgrading PostgreSQL from 9.3 to 9.4 when upgrading Ubuntu 14.04 to 14.10

TL;DR

Create a backup:

pg_dumpall > mybackup.sql

Perform the upgrade:

sudo pg_dropcluster 9.4 main --stop