Install WMIC on Raspbian to track the performance of Windows Machines
While setting up an Observium Server on a Raspberry Pi (Surprise, Surprise) I noticed that the documentation allowed for the capture of CPU, RAM and MSSQL data via WMIC but lacked a method to get WMIC enabled on Raspbian. No luck…
Posted in Raspberry Pi
Tagged Raspberry Pi, Raspbian, WMIC
Comments Off on Install WMIC on Raspbian to track the performance of Windows Machines
Create your own TimeCapsule Backup Device with a Raspberry Pi
Full Instructions Coming Soon! Download Rasbian (Jessie Lite or w/Pixel) Use Win32 Disk Imager to write Rasbian “.IMG” file to MicroSD Card (https://sourceforge.net/projects/win32diskimager/) Boot RaspberryPi 3 with MicroSD Installed Update sudo apt-get update
1 2 3 |
sudo apt-get update sudo apt-get upgrade sudo reboot |
1 2 3 4 5 6 7 8 9 |
sudo apt-get install rpi-update sudo BRANCH=next rpi-update iwconfig wlan0 power off sudo touch /etc/network/if-up.d/wlan0 sudo chmod +x /etc/network/if-up.d/wlan0 sudo chmod 777 /etc/network/if-up.d/wlan0 sudo echo -e '#!/bin/bash\niwconfig wlan0 power off' > /etc/network/if-up.d/wlan0 sudo chmod 755 /etc/network/if-up.d/wlan0 sudo reboot |
Run through basic Raspberry Pi…
Posted in Projects
Tagged Backup, OSX, Raspberry Pi
Comments Off on Create your own TimeCapsule Backup Device with a Raspberry Pi