diff --git a/.idea/codeStyleSettings.xml b/.idea/codeStyleSettings.xml
index a571e63f..1028340e 100644
--- a/.idea/codeStyleSettings.xml
+++ b/.idea/codeStyleSettings.xml
@@ -15,6 +15,9 @@
+
+
+
diff --git a/README.md b/README.md
index a28ee736..1dfa7aea 100644
--- a/README.md
+++ b/README.md
@@ -35,9 +35,21 @@ Digital Ocean helps with our infrastructure, but our developers are all voluntee
### `curl -sSL https://install.pi-hole.net | bash`
-### Alternative Semi-Automated install
+### Alternative Semi-Automated Install Methods
-``` bash
+Clone our repository and run the automated installer from your device.
+
+```
+git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole
+cd Pi-hole/automated_installer/
+(Optionally nano|vi|vim|cat the basic-install.sh file to verify the actions it will take)
+bash basic-install.sh
+```
+
+Or
+
+If you wish to read over the script before running it, then after the [`wget`](https://linux.die.net/man/1/wget) command, run `nano basic-install.sh` to open the file in a text viewer.
+```bash
wget -O basic-install.sh https://install.pi-hole.net
bash basic-install.sh
```
diff --git a/advanced/dphys-swapfile b/advanced/dphys-swapfile
deleted file mode 100644
index d8225175..00000000
--- a/advanced/dphys-swapfile
+++ /dev/null
@@ -1,12 +0,0 @@
-# Pi-hole: A black hole for Internet advertisements
-# (c) 2015, 2016 by Jacob Salmela
-# Network-wide ad blocking via your Raspberry Pi
-# http://pi-hole.net
-# Swap file config
-#
-# Pi-hole is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 2 of the License, or
-# (at your option) any later version.
-
-CONF_SWAPSIZE=500
diff --git a/automated install/basic-install.sh b/automated_install/basic-install.sh
old mode 100755
new mode 100644
similarity index 99%
rename from automated install/basic-install.sh
rename to automated_install/basic-install.sh
index 60ff4ab9..1eaaac60
--- a/automated install/basic-install.sh
+++ b/automated_install/basic-install.sh
@@ -690,7 +690,7 @@ installScripts() {
cd "${PI_HOLE_LOCAL_REPO}"
install -o "${USER}" -Dm755 -t /opt/pihole/ gravity.sh
install -o "${USER}" -Dm755 -t /opt/pihole/ ./advanced/Scripts/*.sh
- install -o "${USER}" -Dm755 -t /opt/pihole/ ./automated\ install/uninstall.sh
+ install -o "${USER}" -Dm755 -t /opt/pihole/ ./automated_install/uninstall.sh
install -o "${USER}" -Dm755 -t /usr/local/bin/ pihole
install -Dm644 ./advanced/bash-completion/pihole /etc/bash_completion.d/pihole
echo " done."
diff --git a/automated install/uninstall.sh b/automated_install/uninstall.sh
old mode 100755
new mode 100644
similarity index 100%
rename from automated install/uninstall.sh
rename to automated_install/uninstall.sh
diff --git a/test/centos.Dockerfile b/test/centos.Dockerfile
index 9af7eb4d..08ec9bae 100644
--- a/test/centos.Dockerfile
+++ b/test/centos.Dockerfile
@@ -5,10 +5,11 @@ ENV SCRIPTDIR /opt/pihole
RUN mkdir -p $GITDIR $SCRIPTDIR /etc/pihole
ADD . $GITDIR
-RUN cp $GITDIR/advanced/Scripts/*.sh $GITDIR/gravity.sh $GITDIR/pihole $GITDIR/automated\ install/*.sh $SCRIPTDIR/
+RUN cp $GITDIR/advanced/Scripts/*.sh \
+ $GITDIR/gravity.sh $GITDIR/pihole \
+ $GITDIR/automated_install/*.sh \
+ $SCRIPTDIR/
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$SCRIPTDIR
RUN true && \
chmod +x $SCRIPTDIR/*
-
-#sed '/# Start the installer/Q' /opt/pihole/basic-install.sh > /opt/pihole/stub_basic-install.sh && \
diff --git a/test/debian.Dockerfile b/test/debian.Dockerfile
index b80d6155..d82a58fe 100644
--- a/test/debian.Dockerfile
+++ b/test/debian.Dockerfile
@@ -5,11 +5,12 @@ ENV SCRIPTDIR /opt/pihole
RUN mkdir -p $GITDIR $SCRIPTDIR /etc/pihole
ADD . $GITDIR
-RUN cp $GITDIR/advanced/Scripts/*.sh $GITDIR/gravity.sh $GITDIR/pihole $GITDIR/automated\ install/*.sh $SCRIPTDIR/
+RUN cp $GITDIR/advanced/Scripts/*.sh \
+ $GITDIR/gravity.sh $GITDIR/pihole \
+ $GITDIR/automated_install/*.sh \
+ $SCRIPTDIR/
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$SCRIPTDIR
RUN true && \
chmod +x $SCRIPTDIR/*
-
-#sed '/# Start the installer/Q' /opt/pihole/basic-install.sh > /opt/pihole/stub_basic-install.sh && \