Ronald Nutter's Blog, page 6
May 8, 2021
How to Create a personal weather station using RPI Sense hat
Would you like to have the RPI tell you more about your house?
Need to know about barometric pressure or humidity?
Stay tuned and I will show you how to use your RPI and the Sense hat to get this information
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install python3-flask
sudo apt-get install sense-hat
nano weather.py
from flask import Flask, render_template
from sense_hat import SenseHat
app = Flask(__name__)
@app.route(‘/’)
def index():
sense = SenseHat()
celcius = round(sense.get_temperature(), 1)
fahrenheit = round(1.8 * celcius + 32, 1)
return render_template(‘weather.html’, celcius=celcius, fahrenheit=fahrenheit)
if __name__ == ‘__main__’:
app.run(debug=True, host=’0.0.0.0′)
Ctrl x to save file
mkdir templates
nano templates/weather.html
Raspberry Pi Weather Station
Raspberry Pi Weather StationTemperature
Celcius: {{ celcius }}
Fahrenheit: {{ fahrenheit }}
! Start web server
python3 weather.py
! Goto ip address of RPI:5000
! You should see a page showing temp in C and F
!! Add humidity and barometric pressure
nano weather.py
Below the line fahrenheit = round(1.8 * celcius + 32, 1), add the following lines:
humidity = round(sense.get_humidity(), 1)
pressure = round(sense.get_pressure(), 1)
Change return line to look like this –
return render_template(‘weather.html’, celcius=celcius, fahrenheit=fahrenheit, humidity=humidity, pressure=pressure)
Modify the html template to look like this
nano templates/weather.html
Raspberry Pi Weather Station
Raspberry Pi Weather StationTemperature
Celcius: {{ celcius }}
Fahrenheit: {{ fahrenheit }}
Humidity{{ humidity }}
Pressure{{ pressure }}
! Install screen command to allow you to detatch and still be running
sudo apt-get install screen
! Start a screen session that you can disconnect from
screen bash
! Reconnect to screen when you reconnect to rpi
screen -r
!Sense hat temperature discussion
https://www.raspberrypi.org/forums/vi...
How to Set up Raspberry Pi Weather Station Using the Sense HAT?
TIMESTAMPS
0:00 – Intro
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
RPI 2GB
CanaKit Raspberry Pi 4 Basic Kit (2GB RAM)
https://amzn.to/3vLHqjo
CanaKit Raspberry Pi 4 4GB Basic Kit with PiSwitch (4GB RAM)
https://amzn.to/3eWsDMR
Raspberry Pi RASPBERRYPI-SENSEHAT Sense HAT
https://amzn.to/3v6yd3J
Geekworm Raspberry Pi 4 Case, Raspberry Pi 4 Model B CNC Ultra-Thin Aluminum Alloy Metal Passive Cooling Case
https://amzn.to/32q9awx
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RaspberryPi #Sense #Weather
The post How to Create a personal weather station using RPI Sense hat first appeared on TechBytes With Ron Nutter.May 2, 2021
How to create a smarthome computer emergency repair kit
Want to be prepared for problems with your smarthome computers?
Not sure what tools you should have in your kit?
Stay tuned and I will show you how to put together your own kit
1) Windows 10 CD install (to replace damaged files)
• Windows 10 Installer Download: https://www.microsoft.com/en-us/softw…
2) Portableapps.com
a. https://portableapps.com/apps/utiliti...
b. https://portableapps.com/apps/utiliti...
c. https://portableapps.com/apps/utiliti...
d. https://portableapps.com/apps/securit...
e. https://portableapps.com/apps/securit...
3) Unbuntu rescue file
a. Ubuntu USB Instructions: https://ubuntu.com/tutorials/create-a…
b. Ubuntu Desktop Download: https://ubuntu.com/download/desktop
c. Rufus Tool: https://rufus.ie/en_US/
4) Hiren Boot CD
a. Hiren Download: https://www.hirensbootcd.org/download/
b. Hiren Burning Insturctions: https://www.hirensbootcd.org/usb-boot…
USB Drive Labels
PortableApps
Win 10 CD
Ubuntu Desktop
Hiren Boot CD
Case Label
Computer Emergency Repair Kit (split over 2 lines)
Talk about keeping copies of everything downloaded in a safe place with instructions or
Image backups based on my backing up sd card video (same concept)
Talk about labeling the drives with a labeling machine to label all usb flash drive
Talk about periodically making sure that you have the latest updates
Talk about the different cases I have found and which one fits best
Possibly mention sd card and card reader for ultra compact repair kit
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
PNY 32GB Turbo Attaché 3 USB 3.0 Flash Drive, 5-Pack
https://amzn.to/3aCYM8V
Pelican 1010 Micro Case (Black/Clear)
https://amzn.to/3xm8SF2
Alternate case option
USB Flash Drive Case
https://amzn.to/3sO5Cif
USB3.0 Extension Cable 1ft
https://amzn.to/2Shxv5H
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RaspberryPi #Sense #Weather
The post How to create a smarthome computer emergency repair kit first appeared on TechBytes With Ron Nutter.May 1, 2021
7 Raspberry Pi commands you need to know
Want to learn about additional commands you probably aren’t familiar with?
Want to add functionality to your RPI with just a few keystrokes?
Stay tuned and I will show you how
Internal commands
1. How long has raspberry pi been up
a. uptime
2. What is current time
a. date
3. Commands that have been entered on cli
a. history
b. history -c (clear all commands)
4. How to shut down rapsberry pi
a. sudo shutdown -h now
b. Wait for system halted message on screen or for activity light to cease for about 3 to 5 seconds
5. Look at last boot log
a. journalctl -b
b. Start with the end of the log but with additional details
i. journalctl -xe
Add-on commands
6. Test SD card
a. sudo apt install hdparm -y
b. sudo hdparm -t /dev/mmcblk0
7. How to add screen cmd to keep things running
a. sudo apt-get install screen
i. Install screen command to allow you to detach and still be running
b. screen bash
i. Start a screen session that you can disconnect from
c. screen -r
i. Reconnect to screen when you reconnect to rpi
TIMESTAMPS
0:00 – Intro
0:45 – What we will be covering
1:20 – Uptime
2:01 – Date
2:36 – History
4:05 – Shutdown
5:26 – hdparm
6:48 – screen
7:05 – top
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
RPI 2GB
CanaKit Raspberry Pi 4 Basic Kit (2GB RAM)
https://amzn.to/3vLHqjo
CanaKit Raspberry Pi 4 4GB Basic Kit with PiSwitch (4GB RAM)
https://amzn.to/3eWsDMR
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RaspberryPi
The post 7 Raspberry Pi commands you need to know first appeared on TechBytes With Ron Nutter.April 25, 2021
How to Rename/Move a LiFX Bulb in your smarthome
Need to rename a LiFX Bulb?
Need to move a LiFX bulb to another room?
Stay tuned and I will show you how
TIMESTAMPS
0:00 – Intro
0:38 – What we will be covering
1:36 – Renaming a LiFX Bulb
2:13 – Moving the Bulb to a new group
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
LIFX L3A19LW06E26CA White, A19 Wi-Fi Smart LED Light Bulb
https://amzn.to/3sRiCnt
LIFX Mini White (A19) Wi-Fi Smart LED Light Bulb
https://amzn.to/3tN57pY
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #LiFX
The post first appeared on TechBytes With Ron Nutter.April 24, 2021
Your First Project with Arduino Uno R3 to experience Cryptomining
Thinking about getting an Arduino and not how how to set it up?
Want to see a use for the Arduino that requires zero programming?
Stay tuned and I will show you how to do this.
TIMESTAMPS
0:00 – Intro
0:48 – What we will be covering
1:02 – Getting started with the Arduino Uno R3
2:17 – Intro to the DuinoCoin site to get needed files
4:08 – Configuring the Arduino Uno R3
7:30 – Mining with the R3
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
ELEGOO UNO R3 Board ATmega328P ATMEGA16U2 with USB Cable Compatible
https://amzn.to/3xjwrym
Gikfun Uno R3 Case Enclosure Transparent Clear
https://amzn.to/3vgc7Mi
Duino Coin
https://duinocoin.com/getting-started
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RaspberryPi #AndroidTV
The post Your First Project with Arduino Uno R3 to experience Cryptomining first appeared on TechBytes With Ron Nutter.April 18, 2021
RPI vs Arduino – which is best for your smarthome?
Looking at SBC’s and not sure which one to get?
Want to know which one will work best in your smarthome?
Stay tuned and I will go over the differences
Raspberry Pi is good for developing software applications using Python, while Arduino is good for interfacing Sensors and controlling LEDs and Motors.
RPI has Hats (for expansion)
Arduino has Shields (for expansion)
RPI runs on 5 volts
Arduino runs on 9 volts
TIMESTAMPS
0:00 – Intro
0:44 – What we will be covering
0:57 – Pi vs Arduino
6:42 – Which one is best for you?
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
CanaKit Raspberry Pi 4 2GB Basic Starter Kit with Fan (2GB RAM)
https://amzn.to/35QBB8I
ELEGOO UNO R3 Board
https://amzn.to/3mSd36I
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RaspberryPi #Arduino
The post RPI vs Arduino – which is best for your smarthome? first appeared on TechBytes With Ron Nutter.April 17, 2021
Using IFTTT to monitor your smartphone battery
Tired of having your smartphone battery die without warning?
Want a better idea of what kind of charging cycle your phone is getting?
Stay tuned and I will show you how to use IFTTT to help you get this information.
TIMESTAMPS
0:00 – Intro
0:49 – What we will be covering
2:27 – Watching when battery is being charged
4:34 – Watching when battery goes off charge
5:49 – Watching for 15% battery level
7:39 – Google sheet of when phone goes on/off charge
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
CanaKit Raspberry Pi 4 2GB Basic Starter Kit with Fan (2GB RAM)
https://amzn.to/35QBB8I
ELEGOO UNO R3 Board
https://amzn.to/3mSd36I
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RaspberryPi #Arduino
The post Using IFTTT to monitor your smartphone battery first appeared on TechBytes With Ron Nutter.April 11, 2021
6 Unbound diagnostic commands to know
Are you using unbound with your PiHole server?
Would you like to see what is going on with Unbound?
Stay tuned and I will show you some commands that will do that.
! Enable remote administration of unbound
Sudo unbound-control-setup
! Place these commands in /etc/unbound/unbound.conf
! Place before any cmd to load any *.conf files
!
remote-control:
# Enable remote control with unbound-control(8) here.
# set up the keys and certificates with unbound-control-setup.
control-enable: yes
# what interfaces are listened to for remote control.
# give 0.0.0.0 and ::0 to listen to all interfaces.
control-interface: 127.0.0.1
# port number for remote control operations.
control-port: 8953
# unbound server key file.
server-key-file: “/etc/unbound/unbound_server.key”
# unbound server certificate file.
server-cert-file: “/etc/unbound/unbound_server.pem”
# unbound-control key file.
control-key-file: “/etc/unbound/unbound_control.key”
# unbound-control certificate file.
control-cert-file: “/etc/unbound/unbound_control.pem”
! Reboot pi-hole rpi to activate changes
Sudo reboot
! Unbound commands to use
! dump cache to stdout
sudo unbound-control dump_cache
! print statistics without resetting them
sudo unbound-control stats_noreset
! Display status of unbound server
sudo unbound-control status
! Show dns servers to be used for lookup of the specified domain
sudo unbound-control lookup www.novell.com
! Show the requests currently being worked on
sudo unbound-control dump-requestlist
! Shows the dns servers the requests will be forwarded to
sudo unbound-control list_forwards
TIMESTAMPS
0:00 – Intro
0:48 – What we will be covering
1:11 – Configuring unbound-control
3:36 – unbound-control dump_cache
3:56 – unbound-control stats_noreset
4:26 – unbound-control status
4:56 – unbound-control domain_lookup
5:38 – unbound-control dump_requestlist
6:17 – unbound-control list_forwards
6:54 – other unbound-control commands
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
CanaKit Raspberry Pi 4 2GB Basic Starter Kit with Fan (2GB RAM)
https://amzn.to/35QBB8I
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #unbound #PiHole
The post 6 Unbound diagnostic commands to know first appeared on TechBytes With Ron Nutter.April 10, 2021
How to setup a Raspberry Pi as a GPS based NTP server in your Smarthome
Want to make sure that all the devices on your network are using the same time?
Want to maintain the correct time regardless of whether your internet connection is up or down?
Stay tuned and I will show you how to do this with a Raspberry Pi.
sudo apt-get update
sudo apt-get upgrade
—–
Set rpi to my timezone
sudo dpkg-reconfigure tzdata
! Install NTP
sudo apt-get -y install ntp
___
! Enable remote monitoring on RPI NTP
cd /etc
sudo cp ntp.conf ntp-original.conf
sudo nano ntp.conf
Put # in front of this line – restrict -4 default kod notrap nomodify nopeer noquery
Save and exit nano
! Restart NTP
sudo /etc/init.d/ntp restart
____
Sudo nano ntp.conf
Delete individual server lines referencing individual ntp servers
Use pool us.pool.ntp.org iburst to automatically stay in contact with external ntp servers
——-
! Add support for gps antenna
sudo apt-get install gpsd gpsd-clients python-gps
——-
! See where GPS antenna is showing up
sudo lsusb
! Compare this to output after GPS antenna is plugged in
You may need to look at output from this – more /var/log/syslog to see what the device is named
! This command will get the connection started
sudo gpsd /dev/ttyACM0 -n -F /var/run/gpsd.sock
—–
! Check for data coming from GPS Antenna
cgps -s
——
! Verify these changes to ntp.conf
# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help
# Drift file to remember clock rate across restarts
driftfile /var/lib/ntp/ntp.drift
# Server from shared memory provided by gpsd
server 127.127.28.0 minpoll 4 maxpoll 4 prefer
fudge 127.127.28.0 time1 0.000 refid SHM stratum 15
!
pool us.pool.ntp.org minpoll 10 iburst
————–
! Get gpsd to auto start on bootup
sudo dpkg-reconfigure gpsd
!
! Passing NTP server info in DHCP
DHCP option 42
!
Cisco IOS
Under ip dhcp pool config
Option 42 ip x.x.x.x
!
! Info on windows dhcp NTP configuration
https://social.technet.microsoft.com/...
TIMESTAMPS
0:00 – Intro
0:55 – What we will be covering
1:28 – What is NTP
2:56 – Required items
3:54 – Creating boot SD card
4:31 – Booting RPI
5:10 – Applying RPI updates
7:02 – Wifi configuration
9:14 – GPS antenna configuration
10:30 – GPSC monitoring utility
11:36 – NTP configuration
12:08- GPSd reconfiguration
13:10 – Windows 10 ntp client test
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
CanaKit Raspberry Pi 4 2GB Basic Starter Kit with Fan (2GB RAM)
https://amzn.to/35QBB8I
VK-162 G-Mouse – Remote Mount USB – External GPS Navigation Dongle
https://amzn.to/3dmF9Cz
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #NTP #GPS
The post How to setup a Raspberry Pi as a GPS based NTP server in your Smarthome first appeared on TechBytes With Ron Nutter.April 4, 2021
How to keep Pi-Hole happy and healthy on your Raspberry Pi
Want to keep your Pi-Hole running and happy?
Would you like avoid potential problems?
Stay tuned and I will show you how to do this
1. When is it time to update your Pi-Hole server?
2. Do a pre upgrade/update SD card backup
3. Update Pi-Hole
a. pihole -up
b. No reboot of RPI is required
4. Update Raspberry OS
a. sudo apt-get update
b. sudo apt-get upgrade -y
c. sudo reboot
5. Do a post update/upgrade sd card backup
TIMESTAMPS
0:00 – Intro
================================================
*** Show Notes, Links and Resources ****
Here are the items mentioned in this video –
RPI 2GB
CanaKit Raspberry Pi 4 Basic Kit (2GB RAM)
https://amzn.to/3vLHqjo
CanaKit Raspberry Pi 4 4GB Basic Kit with PiSwitch (4GB RAM)
https://amzn.to/3eWsDMR
SanDisk 16GB 3-Pack Ultra microSDHC UHS-I Memory Card (3x16GB)
https://amzn.to/2NYysOF
PNY 32GB Elite Class 10 U1 MicroSDHC Flash Memory Card 3-Pack
https://amzn.to/3w4QCj2
Anker 2-in-1 USB 3.0 SD Card Reader
https://amzn.to/3frgQWK
———————————–
Click on this link to get the
SmartHome Account Creation Checklist
➥➥➥ SUBSCRIBE FOR MORE VIDEOS ➥➥➥
Never miss a video about creating your own smart home
Subscribe ⇢ http://ronaldnutter.com/subscribe
To listen to an audio version of this episode while driving, TechBytes with Ron Nutter is available on iTunes, Google Podcasts, Stitcher and TuneIn. Go to TechByteswithRonNutter.com to subscribe today!
To subscribe to the TechbytesRN newsletter, click here – http://ronaldnutter.com/sample1
In return for subscribing to the newsletter, I will send you a chapter from my first DIY Smart Home Guide Book.
Visit http://www.ronaldnutter.com to see all the books Ron has written
DISCLAIMER: This video and description contains affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps support the channel and allows me to continue to make videos like this. Thank you for the support!
*===============================*
Become a Patreon supporter
https://www.patreon.com/techbytesrn
*===============================*
#TechBytesRN #smarthome #RaspberryPi #PiHole
The post How to keep Pi-Hole happy and healthy on your Raspberry Pi first appeared on TechBytes With Ron Nutter.

