Skip to content

Instantly share code, notes, and snippets.

@TechnologistAU
TechnologistAU / Ubuntu_Server_Hyper-V.ps1
Created January 2, 2018 06:14
Create a Hyper-V Virtual Machine suitable for running Ubuntu Server
<#
.SYNOPSIS
Creates a Hyper-V Virtual Machine suitable for running Ubuntu Server.
.DESCRIPTION
This PowerShell script creates a new Hyper-V Generation 2 Virtual Machine
that is suitable for installing and running Ubuntu Server. The default
hardware configuration set by this script is as follows:
- 4 Processor Cores
- 1GB Dynamic Memory (512MB to 1TB)
- 127GB Dynamic Hard Disk
@TechnologistAU
TechnologistAU / mfi.sh
Last active January 12, 2023 09:57
mFi Installation Script for Raspberry Pi
#!/bin/bash
################################################################################
#
# This script automates the installation of the mFi controller software on the
# Raspberry Pi.
#
# http://www.technologist.site/ubnt
#
################################################################################
@TechnologistAU
TechnologistAU / mfi.init
Last active September 19, 2018 02:03
mFi Startup Script for Raspberry Pi
#!/bin/bash
#
# /etc/init.d/mFi -- Ubiquiti mFi Startup Script for Raspberry Pi
#
#
### BEGIN INIT INFO
# Provides: mfi
# Required-Start: $local_fs $remote_fs $network
# Required-Stop: $local_fs $remote_fs $network
# Default-Start: 2 3 4 5
@TechnologistAU
TechnologistAU / unifi.sh
Last active October 10, 2019 02:57
UniFi 5 Installation Script for Raspberry Pi
#!/bin/bash
################################################################################
#
# This script automates the installation of the UniFi controller software on the
# Raspberry Pi.
#
# http://www.technologist.site/ubnt
#
################################################################################