Skip to content

Instantly share code, notes, and snippets.

@danupp
danupp / Dockerfile
Last active December 10, 2023 22:08
Dockerfile for building and running WSJT-X
FROM ubuntu:latest
ENV SE 'Sweden/Stockholm'
RUN echo $TZ > /etc/timezone && \
apt-get update && apt-get upgrade -y && \
apt-get install -y tzdata && \
rm /etc/localtime && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata && \
apt-get install -y autoconf automake libtool cmake git && \
@bradfa
bradfa / mips64el-debian-qemu-exact-steps.md
Last active June 14, 2023 11:14
mips64el Debian QEMU install

Installing Debian Stretch mips64el Using QEMU

We're going to emulate the mips64el "malta" machine and install Debian Stretch using QEMU on a amd64 Debian Buster host.

Likely you need your user to be in the "libvirt" group and have installed these packages (or a subset of such):

sudo apt install qemu-system-mips virt-manager libguestfs-tools