Skip to content

Instantly share code, notes, and snippets.

@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
#
################################################################################
@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 / 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 / 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 / Debian_Hyper-V.ps1
Last active January 3, 2018 05:29
Create a Hyper-V Virtual Machine suitable for running Debian
<#
.SYNOPSIS
Creates a Hyper-V Virtual Machine suitable for running Debian.
.DESCRIPTION
This PowerShell script creates a new Hyper-V Generation 2 Virtual Machine
that is suitable for installing and running Debian. The default hardware
configuration set by this script is as follows:
- 4 Processor Cores
- 2GB Static Memory
@TechnologistAU
TechnologistAU / wordpress-install.ps1
Last active January 15, 2019 10:57
WordPress Installation Script for Windows Server 2016 and Windows 10 (PowerShell)
<#
================================================================================
===== WordPress Installation Script for Windows Server 2016 and Windows 10 =====
================================================================================
#>
"`r`nWordPress Installation Script for Windows Server 2016 and Windows 10"
"===================================================================="
cd ~\Downloads
@TechnologistAU
TechnologistAU / quake3.sh
Last active May 12, 2022 22:13
This script automates downloading, compiling, patching and running Quake 3 on the Raspberry Pi.
#!/bin/bash
################################################################################
#
# This script automates downloading, compiling, patching and running Quake 3 on
# the Raspberry Pi.
#
# This script is written and maintained by Chris Lowe.
#
# http://www.technologist.site
@TechnologistAU
TechnologistAU / unifi.sh
Created January 10, 2018 10:59
UniFi 4 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
#
################################################################################
#!/bin/bash
hardware_extra_dist=()
hardware_sources=()
gui_sources=()
################################################################################
#
# UpdateSources $1 $2 $3 $4 $5
#
@TechnologistAU
TechnologistAU / unifi5-ubuntu.sh
Last active June 21, 2018 09:08
UniFi 5 Installation Script for Ubuntu
#!/bin/bash
################################################################################
#
# This script automates the installation of the UniFi controller software on
# Ubuntu.
#
# http://www.technologist.site/ubnt
#
################################################################################