To get WiFi working - it was dropping out after a few minutes and not reconnecting until after a reboot
sudo vim /etc/NetworkManager/conf.d/default-wifi-powersave-on.conf
By default it is wifi.powersave = 3
. Change it to wifi.powersave = 0
source: http://unix.stackexchange.com/questions/269661/how-to-turn-off-wireless-power-management-permanently
I tried a few things and this was the only one that worked besides have a continual script running that turned off power management:
while :
do
echo "Current Wireless card state:"
iwconfig wlp8s2
echo "Turning off WiFi power management..."
iwconfig wlp8s2 power off
sleep 5
done