The below guide will run you through the steps to install the Uqiquiti UniFi Controller software on your Raspberry Pi, this has been tested with a Raspberry Pi 3 Model B v1.2.
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
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
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
| FROM mcr.microsoft.com/dotnet/core/runtime:3.0 AS base | |
| WORKDIR /app | |
| EXPOSE 80 | |
| EXPOSE 443 | |
| FROM mcr.microsoft.com/dotnet/core/sdk:3.0 AS build | |
| WORKDIR /src | |
| COPY ["WebApplication4/WebApplication4.csproj", "WebApplication4/"] | |
| RUN dotnet restore "WebApplication4/WebApplication4.csproj" | |
| COPY . . |
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
| function Get-ADdirectReports | |
| { | |
| [CmdletBinding()] | |
| PARAM ([String]$SamAccountName,$SearchBase) | |
| PROCESS{ | |
| #Splatting | |
| $ADSplatting = @{} |
