How to Back Up and Restore Your Raspberry Pi SD Card on Mac

Backing up Raspberry Pi SD cardBacking up Raspberry Pi SD card
Easily backup, restore, or clone your SD card!
Zach Zach (233)
Total time: 5 minutes 
Updated: September 30th, 2019

This short guide will show you how to create a backup image of your Raspberry Pi’s SD card on Mac (MacOS and OS X), as well as how to restore the image later. This approach will also work for cloning your SD card to another card.

Backing up a properly configured system is a good idea that will save you tons of time down the road.

Let’s get started!

Here’s everything you’ll need to complete this guide:

MicroSD cardMicroSD card×1
MicroSD card reader×1
Inserting MicroSD card into computerInserting MicroSD card into computer

Use whatever SD card adapter you have to connect your SD card to your computer.

MacOS Terminal windowMacOS Terminal window

Navigate to Applications > Utilities > Terminal.

Finding disk name in TerminalFinding disk name in Terminal

Enter the following command to find your SD card’s name:

diskutil list

You can identify your card by size and partition type. You should see the Raspberry Pi boot partition type of Windows_FAT_32 next to the drive.

For example, my card’s name is /dev/disk2.

Using the dd backup utility in MacOSUsing the dd backup utility in MacOS

Use the following command to use the dd utility to backup your Raspberry Pi SD card, changing /dev/disk1 to your disk’s name and path:

sudo dd if=/dev/disk1 of=~/PiSDCardBackup.dmg

Enter your password when prompted.

This will create a file named PiSDCardBackup.dmg in the user directory (~). To change the filename or put it somewhere else, you can change ~/PiSDCardBackup.dmg to something else. For example, ~/Documents/OctoPrint.dmg will name the file OctoPrint.dmg and place it in your Documents folder.

While the backup process is running, you should just see a flashing | indicator.

Don’t forget to safely eject your card before removing it from your computer to prevent data corruption. You can do this in Finder by clicking the eject icon in the sidebar. You’re all done!

Restoring SD card backup using dd utilityRestoring SD card backup using dd utility

To restore your backup or clone it onto another SD card, reinsert it into your computer and use the following commands:

diskutil unmountDisk /dev/disk1
sudo dd if=~/PiSDCardBackup.dmg of=/dev/disk1

Be sure to replace /dev/disk1 once again with your card ID, and specify the proper location for the backup image you’re restoring from.

When you’re finished, eject your SD card once more.

How to Back Up and Restore Your Raspberry Pi SD Card on Mac

Backing up Raspberry Pi SD cardBacking up Raspberry Pi SD card
Easily backup, restore, or clone your SD card!
Zach Zach (233)
Total time: 5 minutes 
Updated: September 30th, 2019

This short guide will show you how to create a backup image of your Raspberry Pi’s SD card on Mac (MacOS and OS X), as well as how to restore the image later. This approach will also work for cloning your SD card to another card.

Backing up a properly configured system is a good idea that will save you tons of time down the road.

Let’s get started!

Here’s everything you’ll need to complete this guide:

MicroSD cardMicroSD card×1
MicroSD card reader×1
Inserting MicroSD card into computerInserting MicroSD card into computer

Use whatever SD card adapter you have to connect your SD card to your computer.

MacOS Terminal windowMacOS Terminal window

Navigate to Applications > Utilities > Terminal.

Finding disk name in TerminalFinding disk name in Terminal

Enter the following command to find your SD card’s name:

diskutil list

You can identify your card by size and partition type. You should see the Raspberry Pi boot partition type of Windows_FAT_32 next to the drive.

For example, my card’s name is /dev/disk2.

Using the dd backup utility in MacOSUsing the dd backup utility in MacOS

Use the following command to use the dd utility to backup your Raspberry Pi SD card, changing /dev/disk1 to your disk’s name and path:

sudo dd if=/dev/disk1 of=~/PiSDCardBackup.dmg

Enter your password when prompted.

This will create a file named PiSDCardBackup.dmg in the user directory (~). To change the filename or put it somewhere else, you can change ~/PiSDCardBackup.dmg to something else. For example, ~/Documents/OctoPrint.dmg will name the file OctoPrint.dmg and place it in your Documents folder.

While the backup process is running, you should just see a flashing | indicator.

Don’t forget to safely eject your card before removing it from your computer to prevent data corruption. You can do this in Finder by clicking the eject icon in the sidebar. You’re all done!

Restoring SD card backup using dd utilityRestoring SD card backup using dd utility

To restore your backup or clone it onto another SD card, reinsert it into your computer and use the following commands:

diskutil unmountDisk /dev/disk1
sudo dd if=~/PiSDCardBackup.dmg of=/dev/disk1

Be sure to replace /dev/disk1 once again with your card ID, and specify the proper location for the backup image you’re restoring from.

When you’re finished, eject your SD card once more.

SD card backup steps

How to Back Up and Restore Your Raspberry Pi SD Card on Mac

Backing up Raspberry Pi SD cardBacking up Raspberry Pi SD card
Easily backup, restore, or clone your SD card!
Zach Zach (233)
Total time: 5 minutes 
Updated: September 30th, 2019

This short guide will show you how to create a backup image of your Raspberry Pi’s SD card on Mac (MacOS and OS X), as well as how to restore the image later. This approach will also work for cloning your SD card to another card.

Backing up a properly configured system is a good idea that will save you tons of time down the road.

Let’s get started!

Here’s everything you’ll need to complete this guide:

MicroSD cardMicroSD card×1
MicroSD card reader×1
Inserting MicroSD card into computerInserting MicroSD card into computer

Use whatever SD card adapter you have to connect your SD card to your computer.

MacOS Terminal windowMacOS Terminal window

Navigate to Applications > Utilities > Terminal.

Finding disk name in TerminalFinding disk name in Terminal

Enter the following command to find your SD card’s name:

diskutil list

You can identify your card by size and partition type. You should see the Raspberry Pi boot partition type of Windows_FAT_32 next to the drive.

For example, my card’s name is /dev/disk2.

Using the dd backup utility in MacOSUsing the dd backup utility in MacOS

Use the following command to use the dd utility to backup your Raspberry Pi SD card, changing /dev/disk1 to your disk’s name and path:

sudo dd if=/dev/disk1 of=~/PiSDCardBackup.dmg

Enter your password when prompted.

This will create a file named PiSDCardBackup.dmg in the user directory (~). To change the filename or put it somewhere else, you can change ~/PiSDCardBackup.dmg to something else. For example, ~/Documents/OctoPrint.dmg will name the file OctoPrint.dmg and place it in your Documents folder.

While the backup process is running, you should just see a flashing | indicator.

Don’t forget to safely eject your card before removing it from your computer to prevent data corruption. You can do this in Finder by clicking the eject icon in the sidebar. You’re all done!

Restoring SD card backup using dd utilityRestoring SD card backup using dd utility

To restore your backup or clone it onto another SD card, reinsert it into your computer and use the following commands:

diskutil unmountDisk /dev/disk1
sudo dd if=~/PiSDCardBackup.dmg of=/dev/disk1

Be sure to replace /dev/disk1 once again with your card ID, and specify the proper location for the backup image you’re restoring from.

When you’re finished, eject your SD card once more.

How to Back Up and Restore Your Raspberry Pi SD Card on Mac

Backing up Raspberry Pi SD cardBacking up Raspberry Pi SD card
Easily backup, restore, or clone your SD card!
Zach Zach (233)
Total time: 5 minutes 
Updated: September 30th, 2019

This short guide will show you how to create a backup image of your Raspberry Pi’s SD card on Mac (MacOS and OS X), as well as how to restore the image later. This approach will also work for cloning your SD card to another card.

Backing up a properly configured system is a good idea that will save you tons of time down the road.

Let’s get started!

Here’s everything you’ll need to complete this guide:

MicroSD cardMicroSD card×1
MicroSD card reader×1

How to Back Up and Restore Your Raspberry Pi SD Card on Mac

pimac
Easily backup, restore, or clone your SD card!
Zach Zach (233)
Total time: 5 minutes 
Updated: September 30th, 2019
Zach
4
 
2

Here’s everything you’ll need to complete this guide:

MicroSD cardMicroSD card×1
MicroSD card reader×1
MicroSD cardMicroSD card×1
MicroSD card reader×1
MicroSD card
SD card backup steps
Calling all writers!

We’re hiring. Write for Howchoo

4
 
2
In these interests
pi
PRIMARY
215 guides
mac
81 guides
pi
PRIMARY
215 guides
mac
81 guides
PRIMARY
SD card backup steps
Inserting MicroSD card into computerInserting MicroSD card into computer

Use whatever SD card adapter you have to connect your SD card to your computer.

MacOS Terminal windowMacOS Terminal window

Navigate to Applications > Utilities > Terminal.

Finding disk name in TerminalFinding disk name in Terminal

Enter the following command to find your SD card’s name:

diskutil list

You can identify your card by size and partition type. You should see the Raspberry Pi boot partition type of Windows_FAT_32 next to the drive.

For example, my card’s name is /dev/disk2.

Using the dd backup utility in MacOSUsing the dd backup utility in MacOS

Use the following command to use the dd utility to backup your Raspberry Pi SD card, changing /dev/disk1 to your disk’s name and path:

sudo dd if=/dev/disk1 of=~/PiSDCardBackup.dmg

Enter your password when prompted.

This will create a file named PiSDCardBackup.dmg in the user directory (~). To change the filename or put it somewhere else, you can change ~/PiSDCardBackup.dmg to something else. For example, ~/Documents/OctoPrint.dmg will name the file OctoPrint.dmg and place it in your Documents folder.

While the backup process is running, you should just see a flashing | indicator.

Don’t forget to safely eject your card before removing it from your computer to prevent data corruption. You can do this in Finder by clicking the eject icon in the sidebar. You’re all done!

Restoring SD card backup using dd utilityRestoring SD card backup using dd utility

To restore your backup or clone it onto another SD card, reinsert it into your computer and use the following commands:

diskutil unmountDisk /dev/disk1
sudo dd if=~/PiSDCardBackup.dmg of=/dev/disk1

Be sure to replace /dev/disk1 once again with your card ID, and specify the proper location for the backup image you’re restoring from.

When you’re finished, eject your SD card once more.

Inserting MicroSD card into computerInserting MicroSD card into computer

Use whatever SD card adapter you have to connect your SD card to your computer.

Inserting MicroSD card into computerInserting MicroSD card into computer

Use whatever SD card adapter you have to connect your SD card to your computer.

Connect the SD card to your computer

MacOS Terminal windowMacOS Terminal window

Navigate to Applications > Utilities > Terminal.

MacOS Terminal windowMacOS Terminal window

Navigate to Applications > Utilities > Terminal.

Open Terminal

Finding disk name in TerminalFinding disk name in Terminal

Enter the following command to find your SD card’s name:

diskutil list

You can identify your card by size and partition type. You should see the Raspberry Pi boot partition type of Windows_FAT_32 next to the drive.

For example, my card’s name is /dev/disk2.

Finding disk name in TerminalFinding disk name in Terminal

Enter the following command to find your SD card’s name:

diskutil list

You can identify your card by size and partition type. You should see the Raspberry Pi boot partition type of Windows_FAT_32 next to the drive.

For example, my card’s name is /dev/disk2.

Find your SD card name

Using the dd backup utility in MacOSUsing the dd backup utility in MacOS

Use the following command to use the dd utility to backup your Raspberry Pi SD card, changing /dev/disk1 to your disk’s name and path:

sudo dd if=/dev/disk1 of=~/PiSDCardBackup.dmg

Enter your password when prompted.

This will create a file named PiSDCardBackup.dmg in the user directory (~). To change the filename or put it somewhere else, you can change ~/PiSDCardBackup.dmg to something else. For example, ~/Documents/OctoPrint.dmg will name the file OctoPrint.dmg and place it in your Documents folder.

While the backup process is running, you should just see a flashing | indicator.

Using the dd backup utility in MacOSUsing the dd backup utility in MacOS

Use the following command to use the dd utility to backup your Raspberry Pi SD card, changing /dev/disk1 to your disk’s name and path:

sudo dd if=/dev/disk1 of=~/PiSDCardBackup.dmg

Enter your password when prompted.

This will create a file named PiSDCardBackup.dmg in the user directory (~). To change the filename or put it somewhere else, you can change ~/PiSDCardBackup.dmg to something else. For example, ~/Documents/OctoPrint.dmg will name the file OctoPrint.dmg and place it in your Documents folder.

While the backup process is running, you should just see a flashing | indicator.

Create a full SD card backup

Don’t forget to safely eject your card before removing it from your computer to prevent data corruption. You can do this in Finder by clicking the eject icon in the sidebar. You’re all done!

Don’t forget to safely eject your card before removing it from your computer to prevent data corruption. You can do this in Finder by clicking the eject icon in the sidebar. You’re all done!

Safely eject your SD card

Restoring SD card backup using dd utilityRestoring SD card backup using dd utility

To restore your backup or clone it onto another SD card, reinsert it into your computer and use the following commands:

diskutil unmountDisk /dev/disk1
sudo dd if=~/PiSDCardBackup.dmg of=/dev/disk1

Be sure to replace /dev/disk1 once again with your card ID, and specify the proper location for the backup image you’re restoring from.

When you’re finished, eject your SD card once more.

Restoring SD card backup using dd utilityRestoring SD card backup using dd utility

To restore your backup or clone it onto another SD card, reinsert it into your computer and use the following commands:

diskutil unmountDisk /dev/disk1
sudo dd if=~/PiSDCardBackup.dmg of=/dev/disk1

Be sure to replace /dev/disk1 once again with your card ID, and specify the proper location for the backup image you’re restoring from.

When you’re finished, eject your SD card once more.

Restoring the SD card

Calling all writers!

We’re hiring. Write for Howchoo

Zach's profile pictureZach
Joined in 2015
Web developer, designer, tinkerer, and beer enthusiast living in Tampa, Florida.
Zach's profile picturehowchoo
Share this guide!
RedditEmailTextPinterest
Related to this guide:
Best Raspberry Pi Beginngers BooksBest Raspberry Pi Beginngers Books
For Raspberry Pi beginners who still love to follow along in a book.
Michael's profile picture MichaelView
In these interests: booksretropiepi
Astro Pi on the ISSAstro Pi on the ISS
What’s better than an experiment? An experiment in space!
Michael's profile picture MichaelView
In these interests: kidspinews
Best Raspberry Pi Beginngers BooksBest Raspberry Pi Beginngers Books
For Raspberry Pi beginners who still love to follow along in a book.
Michael's profile picture MichaelView
In these interests: booksretropiepi
Michael's profile pictureViewbooksretropiepi
Astro Pi on the ISSAstro Pi on the ISS
What’s better than an experiment? An experiment in space!
Michael's profile picture MichaelView
In these interests: kidspinews
Michael's profile pictureViewkidspinewsAsh's profile pictureViewpi
People also read:
The Kali Linux and Raspberry Pi logos, side by side
Kali Linux is a great distribution for Raspberry Pi users who want to get to grips with security testing.
Raspberry Pi Web Server LAMP Stack
The Raspberry Pi micro-computer grows in power with each new model release, with more resources that make it a more capable, low-cost content server for your media and resources.
NEMS and Raspberry Pi Logos
Laptops, smartphones, tablets, even lightbulbs—an endless number of devices now have the ability to connect to your local network and the wider internet.
How to Boot Your Raspberry Pi 4 From a USB Drive
The Raspberry Pi was designed to boot from an SD card, but in some cases, it’s convenient to boot from a USB drive.
Raspberry Pi OS
Get the new official Raspberry Pi OS on your Pi.
Raspberry Pi FAQ
New to the Raspberry Pi? Start here.
The Pi-hole logo
Blocking ads just got easier with Pi-hole, a network-wide ad blocker for the Raspberry Pi
Raspberry Pi 4 Cases 2020
Don’t skip out on a proper case for your Pi 4.
Setting up Bluetooth on a Raspberry Pi
The only Raspberry Pi Bluetooth guide you’ll ever need.
Raspberry Pi Windows
Your favorite MS OS on the Pi.
The Kali Linux and Raspberry Pi logos, side by side
Kali Linux is a great distribution for Raspberry Pi users who want to get to grips with security testing.
Raspberry Pi Web Server LAMP Stack
The Raspberry Pi micro-computer grows in power with each new model release, with more resources that make it a more capable, low-cost content server for your media and resources.
NEMS and Raspberry Pi Logos
Laptops, smartphones, tablets, even lightbulbs—an endless number of devices now have the ability to connect to your local network and the wider internet.
How to Boot Your Raspberry Pi 4 From a USB Drive
The Raspberry Pi was designed to boot from an SD card, but in some cases, it’s convenient to boot from a USB drive.
Raspberry Pi OS
Get the new official Raspberry Pi OS on your Pi.
The Kali Linux and Raspberry Pi logos, side by side
The Kali Linux and Raspberry Pi logos, side by sideHow to Install Kali Linux on a Raspberry Pi
Raspberry Pi Web Server LAMP Stack
Raspberry Pi Web Server LAMP StackHow to Set Up a Raspberry Pi Web Server
NEMS and Raspberry Pi Logos
NEMS and Raspberry Pi LogosHow to Set Up a Raspberry Pi Network Monitor
How to Boot Your Raspberry Pi 4 From a USB Drive
How to Boot Your Raspberry Pi 4 From a USB DriveHow to Boot Your Raspberry Pi 4 From a USB Drive
Raspberry Pi OS
Raspberry Pi OSHow to Install Raspberry Pi OS on Your Raspberry Pi
Raspberry Pi FAQ
New to the Raspberry Pi? Start here.
The Pi-hole logo
Blocking ads just got easier with Pi-hole, a network-wide ad blocker for the Raspberry Pi
Raspberry Pi 4 Cases 2020
Don’t skip out on a proper case for your Pi 4.
Setting up Bluetooth on a Raspberry Pi
The only Raspberry Pi Bluetooth guide you’ll ever need.
Raspberry Pi Windows
Your favorite MS OS on the Pi.
Raspberry Pi FAQ
Raspberry Pi FAQRaspberry Pi FAQ – Everything You Need To Know
The Pi-hole logo
The Pi-hole logoPi-hole: How to Set Up and Configure Pi-hole on Raspberry Pi
Raspberry Pi 4 Cases 2020
Raspberry Pi 4 Cases 2020Best Raspberry Pi 4 Cases of 2020
Setting up Bluetooth on a Raspberry Pi
Setting up Bluetooth on a Raspberry PiHow to Set Up Bluetooth on a Raspberry Pi
Raspberry Pi Windows
Raspberry Pi WindowsHow to run Windows on the Raspberry Pi
Posted in these interests:
pipi
pi
PRIMARY
The Raspberry Pi is a small, inexpensive computer developed by the Raspberry Pi Foundation in the United Kingdom.
pipi
pi
PRIMARY
The Raspberry Pi is a small, inexpensive computer developed by the Raspberry Pi Foundation in the United Kingdom.
PRIMARY
ExploreExplore
Discuss this guide:
We’re hiring!
Are you a passionate writer? We want to hear from you!
We’re hiring!
Are you a passionate writer? We want to hear from you!
View openings

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Donate
Calling all writers!

We’re hiring. Write for Howchoo

Ash's profile pictureAsh
Joined in 2018
Ash is an experienced tech writer with an endless passion for technology. She enjoys retro gaming, 3D printing, and making awesome projects on the Raspberry Pi.
Share this guide!
Related to this guide:
How to Reset a CenturyLink Router or ModemHow to Reset a CenturyLink Router or Modem
Start over new with a factory reset.
Ash's profile picture AshView
In these interests: internetcenturylinkrouter
How to Log in to a CenturyLink RouterHow to Log in to a CenturyLink Router
Secure your network, change your WiFi password, and more
Ash's profile picture AshView
In these interests: centurylinkrouterinternet
How to Disable Autofill in Your BrowserHow to Disable Autofill in Your Browser
Web browser developers are continually inventing new ways to improve your browsing experience, and typing is a challenge for many users.
Tyler's profile picture TylerView
In these interests: internet
People also read:
How to Record with OBS
Take a video, it will last longer.
Stream with OBS
Lights, camera, action!
block websites on Chrome
Create and manage your own blacklist.
How to Check Your WiFi Speed
Do you know how fast your network was going, sir?
How to Find WiFi Password
Log in to your wireless network ASAP.
Open a Port on a Router
Manually configure the port settings on your router.
Change Channel on Router
Wi-Fi trouble? Try this quick fix.
How to Use a Router
Understand what your wireless router is capable of and what you can do with it.
How to Find My Router IP Address
Find the IP address you need to access your router.
Posted in these interests:
internetinternet
A series of tubes.
Discuss this guide:
We’re hiring!
Are you a passionate writer? We want to hear from you!
We’re hiring!
Are you a passionate writer? We want to hear from you!

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

How to Get Free Wi-Fi

How to get free WiFiHow to get free WiFi
Get some bandwidth at no charge!
Ash Ash (295)
Total time: 5 minutes 
Updated: September 30th, 2019

There are several ways to get free WiFi. It can be tricky, but it’s not impossible. A lot goes into powering a WiFi network—from building the infrastructure to technical maintenance. Regardless, we can access plenty of resources to get our online fix. If you’re in a bind, these are the best ways to get yourself online without a charge.

Posted in these interests:

wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides

There are many publically owned spaces that provide free WiFi. For example, it’s extremely common to find free WiFi at your local library. You can also check with local museums or some government offices. But free WiFi isn’t limited to public buildings. Sometimes you can find parks and hiking shelters with free wireless services. If you find a building with free WiFi, ask one of the people who work there for instructions to log on.

Many cities and even rural towns provide a free wireless network. These networks are usually limited to city/town limits. Check to see if WiFi is provided in your area. There may be steps to follow to find the network and log in. A local official can help provide this information.

It’s important to note that public networks like these are not as secure as a private network. Lower your speed expectations, shared bandwidth often leads to some seriously slow loading times. You probably won’t be playing online games like this. But you can definitely get online and send important messages.

Free WiFi is a great way to attract customers. You can find plenty of businesses that provide free WiFi. Sometimes you have to buy something first, but other places are less restrictive. Consider checking with gyms and airports, as well. Once you find a business with free WiFi, ask one of the staff for login instructions. They’ll let you know if they have any special requirements.

Here are a few common businesses that are known to provide free WiFi services:

  • Starbucks
  • McDonalds
  • Dunkin’
  • Apple Store
  • Panera Bread
  • Buffalo Wild Wings
  • Target
  • Best Buy
  • Barnes & Noble

You can use a WiFi detection app to locate free hotspots. There are several popular choices in both Apple and Android app stores. These apps make a list of free WiFi hotspots nearby. They’re great for finding free wireless in places you’re not familiar with. As always, check with local staff for login instructions when you find a location with free WiFi. Here are a few WiFi hotspot detection apps to get you started.

Apple App Store

Android App Store

If you already have a device with a mobile network, you may be able to create your own WiFi hotspot. This lets you use the same network on another device using WiFi.

I’ll admit, this isn’t the same thing as free WiFi as it requires you have to have an existing data plan through a provider. But this does help you access the internet on devices that connect through wireless instead of 3G or 4G.

Check with your phone or tablet provider for specific instructions on creating a hotspot. Once it’s active, connect and log in using your wireless device. Congratulations! You’re online and ready to go.

How to Get Free Wi-Fi

How to get free WiFiHow to get free WiFi
Get some bandwidth at no charge!
Ash Ash (295)
Total time: 5 minutes 
Updated: September 30th, 2019

There are several ways to get free WiFi. It can be tricky, but it’s not impossible. A lot goes into powering a WiFi network—from building the infrastructure to technical maintenance. Regardless, we can access plenty of resources to get our online fix. If you’re in a bind, these are the best ways to get yourself online without a charge.

Posted in these interests:

wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides

There are many publically owned spaces that provide free WiFi. For example, it’s extremely common to find free WiFi at your local library. You can also check with local museums or some government offices. But free WiFi isn’t limited to public buildings. Sometimes you can find parks and hiking shelters with free wireless services. If you find a building with free WiFi, ask one of the people who work there for instructions to log on.

Many cities and even rural towns provide a free wireless network. These networks are usually limited to city/town limits. Check to see if WiFi is provided in your area. There may be steps to follow to find the network and log in. A local official can help provide this information.

It’s important to note that public networks like these are not as secure as a private network. Lower your speed expectations, shared bandwidth often leads to some seriously slow loading times. You probably won’t be playing online games like this. But you can definitely get online and send important messages.

Free WiFi is a great way to attract customers. You can find plenty of businesses that provide free WiFi. Sometimes you have to buy something first, but other places are less restrictive. Consider checking with gyms and airports, as well. Once you find a business with free WiFi, ask one of the staff for login instructions. They’ll let you know if they have any special requirements.

Here are a few common businesses that are known to provide free WiFi services:

  • Starbucks
  • McDonalds
  • Dunkin’
  • Apple Store
  • Panera Bread
  • Buffalo Wild Wings
  • Target
  • Best Buy
  • Barnes & Noble

You can use a WiFi detection app to locate free hotspots. There are several popular choices in both Apple and Android app stores. These apps make a list of free WiFi hotspots nearby. They’re great for finding free wireless in places you’re not familiar with. As always, check with local staff for login instructions when you find a location with free WiFi. Here are a few WiFi hotspot detection apps to get you started.

Apple App Store

Android App Store

If you already have a device with a mobile network, you may be able to create your own WiFi hotspot. This lets you use the same network on another device using WiFi.

I’ll admit, this isn’t the same thing as free WiFi as it requires you have to have an existing data plan through a provider. But this does help you access the internet on devices that connect through wireless instead of 3G or 4G.

Check with your phone or tablet provider for specific instructions on creating a hotspot. Once it’s active, connect and log in using your wireless device. Congratulations! You’re online and ready to go.

Jump to step

How to Get Free Wi-Fi

How to get free WiFiHow to get free WiFi
Get some bandwidth at no charge!
Ash Ash (295)
Total time: 5 minutes 
Updated: September 30th, 2019

There are several ways to get free WiFi. It can be tricky, but it’s not impossible. A lot goes into powering a WiFi network—from building the infrastructure to technical maintenance. Regardless, we can access plenty of resources to get our online fix. If you’re in a bind, these are the best ways to get yourself online without a charge.

Posted in these interests:

wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides

There are many publically owned spaces that provide free WiFi. For example, it’s extremely common to find free WiFi at your local library. You can also check with local museums or some government offices. But free WiFi isn’t limited to public buildings. Sometimes you can find parks and hiking shelters with free wireless services. If you find a building with free WiFi, ask one of the people who work there for instructions to log on.

Many cities and even rural towns provide a free wireless network. These networks are usually limited to city/town limits. Check to see if WiFi is provided in your area. There may be steps to follow to find the network and log in. A local official can help provide this information.

It’s important to note that public networks like these are not as secure as a private network. Lower your speed expectations, shared bandwidth often leads to some seriously slow loading times. You probably won’t be playing online games like this. But you can definitely get online and send important messages.

Free WiFi is a great way to attract customers. You can find plenty of businesses that provide free WiFi. Sometimes you have to buy something first, but other places are less restrictive. Consider checking with gyms and airports, as well. Once you find a business with free WiFi, ask one of the staff for login instructions. They’ll let you know if they have any special requirements.

Here are a few common businesses that are known to provide free WiFi services:

  • Starbucks
  • McDonalds
  • Dunkin’
  • Apple Store
  • Panera Bread
  • Buffalo Wild Wings
  • Target
  • Best Buy
  • Barnes & Noble

You can use a WiFi detection app to locate free hotspots. There are several popular choices in both Apple and Android app stores. These apps make a list of free WiFi hotspots nearby. They’re great for finding free wireless in places you’re not familiar with. As always, check with local staff for login instructions when you find a location with free WiFi. Here are a few WiFi hotspot detection apps to get you started.

Apple App Store

Android App Store

If you already have a device with a mobile network, you may be able to create your own WiFi hotspot. This lets you use the same network on another device using WiFi.

I’ll admit, this isn’t the same thing as free WiFi as it requires you have to have an existing data plan through a provider. But this does help you access the internet on devices that connect through wireless instead of 3G or 4G.

Check with your phone or tablet provider for specific instructions on creating a hotspot. Once it’s active, connect and log in using your wireless device. Congratulations! You’re online and ready to go.

How to Get Free Wi-Fi

How to get free WiFiHow to get free WiFi
Get some bandwidth at no charge!
Ash Ash (295)
Total time: 5 minutes 
Updated: September 30th, 2019

There are several ways to get free WiFi. It can be tricky, but it’s not impossible. A lot goes into powering a WiFi network—from building the infrastructure to technical maintenance. Regardless, we can access plenty of resources to get our online fix. If you’re in a bind, these are the best ways to get yourself online without a charge.

Posted in these interests:

wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides

How to Get Free Wi-Fi

wirelessinternetnetworking
Get some bandwidth at no charge!
Ash Ash (295)
Total time: 5 minutes 
Updated: September 30th, 2019
Ash
3
 

Posted in these interests:

wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides
wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides
PRIMARY
Jump to step
Calling all writers!

We’re hiring. Write for Howchoo

3
 
In these interests
wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides
wireless
PRIMARY
20 guides
internet
71 guides
networking
25 guides
PRIMARY
Jump to step

There are many publically owned spaces that provide free WiFi. For example, it’s extremely common to find free WiFi at your local library. You can also check with local museums or some government offices. But free WiFi isn’t limited to public buildings. Sometimes you can find parks and hiking shelters with free wireless services. If you find a building with free WiFi, ask one of the people who work there for instructions to log on.

Many cities and even rural towns provide a free wireless network. These networks are usually limited to city/town limits. Check to see if WiFi is provided in your area. There may be steps to follow to find the network and log in. A local official can help provide this information.

It’s important to note that public networks like these are not as secure as a private network. Lower your speed expectations, shared bandwidth often leads to some seriously slow loading times. You probably won’t be playing online games like this. But you can definitely get online and send important messages.

Free WiFi is a great way to attract customers. You can find plenty of businesses that provide free WiFi. Sometimes you have to buy something first, but other places are less restrictive. Consider checking with gyms and airports, as well. Once you find a business with free WiFi, ask one of the staff for login instructions. They’ll let you know if they have any special requirements.

Here are a few common businesses that are known to provide free WiFi services:

  • Starbucks
  • McDonalds
  • Dunkin’
  • Apple Store
  • Panera Bread
  • Buffalo Wild Wings
  • Target
  • Best Buy
  • Barnes & Noble

You can use a WiFi detection app to locate free hotspots. There are several popular choices in both Apple and Android app stores. These apps make a list of free WiFi hotspots nearby. They’re great for finding free wireless in places you’re not familiar with. As always, check with local staff for login instructions when you find a location with free WiFi. Here are a few WiFi hotspot detection apps to get you started.

Apple App Store

Android App Store

If you already have a device with a mobile network, you may be able to create your own WiFi hotspot. This lets you use the same network on another device using WiFi.

I’ll admit, this isn’t the same thing as free WiFi as it requires you have to have an existing data plan through a provider. But this does help you access the internet on devices that connect through wireless instead of 3G or 4G.

Check with your phone or tablet provider for specific instructions on creating a hotspot. Once it’s active, connect and log in using your wireless device. Congratulations! You’re online and ready to go.

There are many publically owned spaces that provide free WiFi. For example, it’s extremely common to find free WiFi at your local library. You can also check with local museums or some government offices. But free WiFi isn’t limited to public buildings. Sometimes you can find parks and hiking shelters with free wireless services. If you find a building with free WiFi, ask one of the people who work there for instructions to log on.

There are many publically owned spaces that provide free WiFi. For example, it’s extremely common to find free WiFi at your local library. You can also check with local museums or some government offices. But free WiFi isn’t limited to public buildings. Sometimes you can find parks and hiking shelters with free wireless services. If you find a building with free WiFi, ask one of the people who work there for instructions to log on.

Locate public spaces with free WiFi

Many cities and even rural towns provide a free wireless network. These networks are usually limited to city/town limits. Check to see if WiFi is provided in your area. There may be steps to follow to find the network and log in. A local official can help provide this information.

It’s important to note that public networks like these are not as secure as a private network. Lower your speed expectations, shared bandwidth often leads to some seriously slow loading times. You probably won’t be playing online games like this. But you can definitely get online and send important messages.

Many cities and even rural towns provide a free wireless network. These networks are usually limited to city/town limits. Check to see if WiFi is provided in your area. There may be steps to follow to find the network and log in. A local official can help provide this information.

It’s important to note that public networks like these are not as secure as a private network. Lower your speed expectations, shared bandwidth often leads to some seriously slow loading times. You probably won’t be playing online games like this. But you can definitely get online and send important messages.

Check for free city or town WiFi

Free WiFi is a great way to attract customers. You can find plenty of businesses that provide free WiFi. Sometimes you have to buy something first, but other places are less restrictive. Consider checking with gyms and airports, as well. Once you find a business with free WiFi, ask one of the staff for login instructions. They’ll let you know if they have any special requirements.

Here are a few common businesses that are known to provide free WiFi services:

  • Starbucks
  • McDonalds
  • Dunkin’
  • Apple Store
  • Panera Bread
  • Buffalo Wild Wings
  • Target
  • Best Buy
  • Barnes & Noble

Free WiFi is a great way to attract customers. You can find plenty of businesses that provide free WiFi. Sometimes you have to buy something first, but other places are less restrictive. Consider checking with gyms and airports, as well. Once you find a business with free WiFi, ask one of the staff for login instructions. They’ll let you know if they have any special requirements.

Here are a few common businesses that are known to provide free WiFi services:

  • Starbucks
  • McDonalds
  • Dunkin’
  • Apple Store
  • Panera Bread
  • Buffalo Wild Wings
  • Target
  • Best Buy
  • Barnes & Noble

Find a business with free WiFi

You can use a WiFi detection app to locate free hotspots. There are several popular choices in both Apple and Android app stores. These apps make a list of free WiFi hotspots nearby. They’re great for finding free wireless in places you’re not familiar with. As always, check with local staff for login instructions when you find a location with free WiFi. Here are a few WiFi hotspot detection apps to get you started.

Apple App Store

Android App Store

You can use a WiFi detection app to locate free hotspots. There are several popular choices in both Apple and Android app stores. These apps make a list of free WiFi hotspots nearby. They’re great for finding free wireless in places you’re not familiar with. As always, check with local staff for login instructions when you find a location with free WiFi. Here are a few WiFi hotspot detection apps to get you started.

Apple App Store

Android App Store

Use a hotspot finder app

If you already have a device with a mobile network, you may be able to create your own WiFi hotspot. This lets you use the same network on another device using WiFi.

I’ll admit, this isn’t the same thing as free WiFi as it requires you have to have an existing data plan through a provider. But this does help you access the internet on devices that connect through wireless instead of 3G or 4G.

Check with your phone or tablet provider for specific instructions on creating a hotspot. Once it’s active, connect and log in using your wireless device. Congratulations! You’re online and ready to go.

If you already have a device with a mobile network, you may be able to create your own WiFi hotspot. This lets you use the same network on another device using WiFi.

I’ll admit, this isn’t the same thing as free WiFi as it requires you have to have an existing data plan through a provider. But this does help you access the internet on devices that connect through wireless instead of 3G or 4G.

Check with your phone or tablet provider for specific instructions on creating a hotspot. Once it’s active, connect and log in using your wireless device. Congratulations! You’re online and ready to go.

Create your own hotspot with a phone or tablet

Calling all writers!

We’re hiring. Write for Howchoo

Ash's profile pictureAsh
Joined in 2018
Ash is an experienced tech writer with an endless passion for technology. She enjoys retro gaming, 3D printing, and making awesome projects on the Raspberry Pi.
Ash's profile picture
Share this guide!
RedditEmailTextPinterest
Related to this guide:
Wi-Fi FAQsWi-Fi FAQs
Everything you ought to know about Wi-Fi.
Ash's profile picture AshView
In these interests: networkingwireless
ATT unlock phoneATT unlock phone
Your AT&T phone might work with a different carrier. Some devices can be unlocked to work with other cell phone service providers.
Ash's profile picture AshView
In these interests: attwireless
Unlock your phone for any carrierUnlock your phone for any carrier
In these interests: atttmobilewireless
Wi-Fi FAQsWi-Fi FAQs
Everything you ought to know about Wi-Fi.
Ash's profile picture AshView
In these interests: networkingwireless
Ash's profile pictureViewnetworkingwireless
ATT unlock phoneATT unlock phone
Your AT&T phone might work with a different carrier. Some devices can be unlocked to work with other cell phone service providers.
Ash's profile picture AshView
In these interests: attwireless
Ash's profile pictureViewattwireless
Unlock your phone for any carrierUnlock your phone for any carrier
In these interests: atttmobilewireless
Ash's profile pictureViewatttmobilewireless
People also read:
Web browser developers are continually inventing new ways to improve your browsing experience, and typing is a challenge for many users.
How to Record with OBS
Take a video, it will last longer.
Stream with OBS
Lights, camera, action!
block websites on Chrome
Create and manage your own blacklist.
NEMS and Raspberry Pi Logos
Laptops, smartphones, tablets, even lightbulbs—an endless number of devices now have the ability to connect to your local network and the wider internet.
How to Check Your WiFi Speed
Do you know how fast your network was going, sir?
How to Find WiFi Password
Log in to your wireless network ASAP.
Open a Port on a Router
Manually configure the port settings on your router.
Change Channel on Router
Wi-Fi trouble? Try this quick fix.
Web browser developers are continually inventing new ways to improve your browsing experience, and typing is a challenge for many users.
How to Record with OBS
Take a video, it will last longer.
Stream with OBS
Lights, camera, action!
block websites on Chrome
Create and manage your own blacklist.
How to Disable Autofill in Your Browser
How to Record with OBS
How to Record with OBSHow to Record with OBS
Stream with OBS
Stream with OBSHow to Stream with OBS
OBS Open Broadcasting Software
OBS Open Broadcasting SoftwareOBS: What It Is, How It Works, and Why You Need It
block websites on Chrome
block websites on ChromeHow to Block Websites on Chrome
NEMS and Raspberry Pi Logos
Laptops, smartphones, tablets, even lightbulbs—an endless number of devices now have the ability to connect to your local network and the wider internet.
How to Check Your WiFi Speed
Do you know how fast your network was going, sir?
How to Find WiFi Password
Log in to your wireless network ASAP.
Open a Port on a Router
Manually configure the port settings on your router.
Change Channel on Router
Wi-Fi trouble? Try this quick fix.
NEMS and Raspberry Pi Logos
NEMS and Raspberry Pi LogosHow to Set Up a Raspberry Pi Network Monitor
How to Check Your WiFi Speed
How to Check Your WiFi SpeedHow to Check your Wi-Fi Network Speed
How to Find WiFi Password
How to Find WiFi PasswordHow to Find Your Wi-Fi Password
Open a Port on a Router
Open a Port on a RouterHow to Open a Port on a Router
Change Channel on Router
Change Channel on RouterHow to Change the Channel on a Wireless Router
Posted in these interests:
internetinternet
A series of tubes.
PRIMARY
Explore
internetinternet
A series of tubes.
ExploreExplore
Discuss this guide:
We’re hiring!
Are you a passionate writer? We want to hear from you!
We’re hiring!
Are you a passionate writer? We want to hear from you!
View openings

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Donate

How to Cancel Xbox Game Pass

Xbox Game PassXbox Game Pass
Ending your membership with Microsoft.
Ash Ash (298)
Total time: 1 minute 
Updated: September 30th, 2019

For a monthly fee, Xbox Game Pass grants you access to a library of games. If you’re looking to cancel your subscription—we’re not here to judge. You can easily cancel the service through your Microsoft account settings under Services and Subscriptions.

Posted in these interests:

Xbox
xbox
PRIMARY
9 guides
gaming
31 guides
Microsoft Live Login PageMicrosoft Live Login Page

In a browser window, log in to your Microsoft account and access your account settings.

Microsoft Services & SubscriptionsMicrosoft Services & Subscriptions

Navigate to Services & Subscriptions. This page has a complete list of available services for your Microsoft Account.

Cancel Xbox Game PassCancel Xbox Game Pass

Look for Xbox Game Pass in the list and choose Manage.

Xbox Game Pass cancellation confirmationXbox Game Pass cancellation confirmation

Select Cancel to end the subscription. A pop-up window will ask you when you want to end your subscription. After you make a selection, click Next and Confirm Cancellation.

Xbox Game PassXbox Game Pass

If you choose to restart your Xbox Game Pass subscription, visit the Xbox Game Pass webpage for a current pricing guide.

Series: Xbox Basics
Sync Xbox Controllers

How to Cancel Xbox Game Pass

Xbox Game PassXbox Game Pass
Ending your membership with Microsoft.
Ash Ash (298)
Total time: 1 minute 
Updated: September 30th, 2019

For a monthly fee, Xbox Game Pass grants you access to a library of games. If you’re looking to cancel your subscription—we’re not here to judge. You can easily cancel the service through your Microsoft account settings under Services and Subscriptions.

Posted in these interests:

Xbox
xbox
PRIMARY
9 guides
gaming
31 guides
Microsoft Live Login PageMicrosoft Live Login Page

In a browser window, log in to your Microsoft account and access your account settings.

Microsoft Services & SubscriptionsMicrosoft Services & Subscriptions

Navigate to Services & Subscriptions. This page has a complete list of available services for your Microsoft Account.

Cancel Xbox Game PassCancel Xbox Game Pass

Look for Xbox Game Pass in the list and choose Manage.

Xbox Game Pass cancellation confirmationXbox Game Pass cancellation confirmation

Select Cancel to end the subscription. A pop-up window will ask you when you want to end your subscription. After you make a selection, click Next and Confirm Cancellation.

Xbox Game PassXbox Game Pass

If you choose to restart your Xbox Game Pass subscription, visit the Xbox Game Pass webpage for a current pricing guide.

Series: Xbox Basics
Sync Xbox Controllers
Jump to step

How to Cancel Xbox Game Pass

Xbox Game PassXbox Game Pass
Ending your membership with Microsoft.
Ash Ash (298)
Total time: 1 minute 
Updated: September 30th, 2019

For a monthly fee, Xbox Game Pass grants you access to a library of games. If you’re looking to cancel your subscription—we’re not here to judge. You can easily cancel the service through your Microsoft account settings under Services and Subscriptions.

Posted in these interests:

Xbox
xbox
PRIMARY
9 guides
gaming
31 guides
Microsoft Live Login PageMicrosoft Live Login Page

In a browser window, log in to your Microsoft account and access your account settings.

Microsoft Services & SubscriptionsMicrosoft Services & Subscriptions

Navigate to Services & Subscriptions. This page has a complete list of available services for your Microsoft Account.

Cancel Xbox Game PassCancel Xbox Game Pass

Look for Xbox Game Pass in the list and choose Manage.

Xbox Game Pass cancellation confirmationXbox Game Pass cancellation confirmation

Select Cancel to end the subscription. A pop-up window will ask you when you want to end your subscription. After you make a selection, click Next and Confirm Cancellation.

Xbox Game PassXbox Game Pass

If you choose to restart your Xbox Game Pass subscription, visit the Xbox Game Pass webpage for a current pricing guide.

Series: Xbox Basics
Sync Xbox Controllers

How to Cancel Xbox Game Pass

Xbox Game PassXbox Game Pass
Ending your membership with Microsoft.
Ash Ash (298)
Total time: 1 minute 
Updated: September 30th, 2019

For a monthly fee, Xbox Game Pass grants you access to a library of games. If you’re looking to cancel your subscription—we’re not here to judge. You can easily cancel the service through your Microsoft account settings under Services and Subscriptions.

Posted in these interests:

Xbox
xbox
PRIMARY
9 guides
gaming
31 guides

How to Cancel Xbox Game Pass

xboxgaming
Ending your membership with Microsoft.
Ash Ash (298)
Total time: 1 minute 
Updated: September 30th, 2019
Ash
 

Posted in these interests:

Xbox
xbox
PRIMARY
9 guides
gaming
31 guides
Xbox
xbox
PRIMARY
9 guides
gaming
31 guides
Xbox
PRIMARY
Jump to step
Calling all writers!

We’re hiring. Write for Howchoo

 
In these interests
Xbox
xbox
PRIMARY
9 guides
gaming
31 guides
Xbox
xbox
PRIMARY
9 guides
gaming
31 guides
Xbox
PRIMARY
Jump to step
Series: Xbox Basics
Xbox GameshareXbox OneFree Xbox Game PassXbox One and ControllerXbox Game Pass
Microsoft Live Login PageMicrosoft Live Login Page

In a browser window, log in to your Microsoft account and access your account settings.

Microsoft Services & SubscriptionsMicrosoft Services & Subscriptions

Navigate to Services & Subscriptions. This page has a complete list of available services for your Microsoft Account.

Cancel Xbox Game PassCancel Xbox Game Pass

Look for Xbox Game Pass in the list and choose Manage.

Xbox Game Pass cancellation confirmationXbox Game Pass cancellation confirmation

Select Cancel to end the subscription. A pop-up window will ask you when you want to end your subscription. After you make a selection, click Next and Confirm Cancellation.

Xbox Game PassXbox Game Pass

If you choose to restart your Xbox Game Pass subscription, visit the Xbox Game Pass webpage for a current pricing guide.

Series: Xbox Basics
Sync Xbox Controllers
Microsoft Live Login PageMicrosoft Live Login Page

In a browser window, log in to your Microsoft account and access your account settings.

Microsoft Live Login PageMicrosoft Live Login Page

In a browser window, log in to your Microsoft account and access your account settings.

Log in to Your Microsoft Account

Microsoft Services & SubscriptionsMicrosoft Services & Subscriptions

Navigate to Services & Subscriptions. This page has a complete list of available services for your Microsoft Account.

Microsoft Services & SubscriptionsMicrosoft Services & Subscriptions

Navigate to Services & Subscriptions. This page has a complete list of available services for your Microsoft Account.

Access Your Subscriptions List

Cancel Xbox Game PassCancel Xbox Game Pass

Look for Xbox Game Pass in the list and choose Manage.

Cancel Xbox Game PassCancel Xbox Game Pass

Look for Xbox Game Pass in the list and choose Manage.

Select Xbox Game Pass

Xbox Game Pass cancellation confirmationXbox Game Pass cancellation confirmation

Select Cancel to end the subscription. A pop-up window will ask you when you want to end your subscription. After you make a selection, click Next and Confirm Cancellation.

Xbox Game Pass cancellation confirmationXbox Game Pass cancellation confirmation

Select Cancel to end the subscription. A pop-up window will ask you when you want to end your subscription. After you make a selection, click Next and Confirm Cancellation.

Cancel the Xbox Game Pass Subscription

Xbox Game PassXbox Game Pass

If you choose to restart your Xbox Game Pass subscription, visit the Xbox Game Pass webpage for a current pricing guide.

Xbox Game PassXbox Game Pass

If you choose to restart your Xbox Game Pass subscription, visit the Xbox Game Pass webpage for a current pricing guide.

Restart Your Xbox Game Pass Subscription

Series: Xbox Basics
Sync Xbox ControllersXbox GameshareXbox OneFree Xbox Game PassXbox One and ControllerXbox Game Pass
Calling all writers!

We’re hiring. Write for Howchoo

Ash's profile pictureAsh
Joined in 2018
Ash is an experienced tech writer with an endless passion for technology. She enjoys retro gaming, 3D printing, and making awesome projects on the Raspberry Pi.
Ash's profile picture
Share this guide!
RedditEmailTextPinterest
Related to this guide:
Free Xbox Game PassFree Xbox Game Pass
In these interests: gamingfreexbox
Xbox GameshareXbox Gameshare
All for one and one for all!
Ash's profile picture AshView
In these interests: gamingxbox
Xbox One ControllerXbox One Controller
Use your Xbox One controller with your favorite PC games.
Ash's profile picture AshView
In these interests: gamingxbox
Free Xbox Game PassFree Xbox Game Pass
In these interests: gamingfreexbox
Ash's profile pictureViewgamingfreexbox
Xbox GameshareXbox Gameshare
All for one and one for all!
Ash's profile picture AshView
In these interests: gamingxbox
Ash's profile pictureViewgamingxbox
Xbox One ControllerXbox One Controller
Use your Xbox One controller with your favorite PC games.
Ash's profile picture AshView
In these interests: gamingxbox
Ash's profile pictureViewgamingxbox
People also read:
Xbox One
The easiest troubleshooting step.
Xbox One and Controller
Add your controller and start playing!
The new Xbox 360 has integrated WiFi — but the old white one doesn’t. Why spend $70+ on an Xbox 360 WiFi adapter when you can spend $20-30 on the original Xbox adapter and call it a day?
How to Record with OBS
Take a video, it will last longer.
Stream with OBS
Lights, camera, action!
Gaming keyboard
Having the right equipment can make or break your gaming experience.
Raspberry Pi Minecraft Server
A whole world trapped inside your Pi.
Xbox One
The easiest troubleshooting step.
Xbox One and Controller
Add your controller and start playing!
The new Xbox 360 has integrated WiFi — but the old white one doesn’t. Why spend $70+ on an Xbox 360 WiFi adapter when you can spend $20-30 on the original Xbox adapter and call it a day?
How to Record with OBS
Take a video, it will last longer.
Stream with OBS
Lights, camera, action!
Xbox One
Xbox OneHow to Clear the Cache on Your Xbox One
Xbox One and Controller
Xbox One and ControllerHow to Connect or Sync an Xbox One Controller
How to Use the Original Black Xbox Wireless Adapter with Your Xbox 360
How to Record with OBS
How to Record with OBSHow to Record with OBS
Stream with OBS
Stream with OBSHow to Stream with OBS
Gaming keyboard
Having the right equipment can make or break your gaming experience.
Raspberry Pi Minecraft Server
A whole world trapped inside your Pi.
OBS Open Broadcasting Software
OBS Open Broadcasting SoftwareOBS: What It Is, How It Works, and Why You Need It
Nintendo Switch from Spare Parts
Nintendo Switch from Spare PartsTired of Nintendo Switch Price Gougers? This Guy Built His Own—From Spare Parts
Gaming keyboard
Gaming keyboardHow to Choose the Perfect Gaming Keyboard
Raspberry Pi Minecraft Server
Raspberry Pi Minecraft ServerHow to Run a Minecraft Server on the Raspberry Pi
Minecraft on Raspberry Pi
Minecraft on Raspberry PiHow to Install and Play Minecraft on Raspberry Pi (For Free)
Posted in these interests:
XboxXbox
xbox
PRIMARY
Originally released in 2001, the Xbox is Microsoft’s line of home video game consoles.
gaminggaming
READY PLAYER 1
XboxXbox
xbox
PRIMARY
Originally released in 2001, the Xbox is Microsoft’s line of home video game consoles.
PRIMARY
Explore
gaminggaming
READY PLAYER 1
Explore
Discuss this guide:
We’re hiring!
Are you a passionate writer? We want to hear from you!
We’re hiring!
Are you a passionate writer? We want to hear from you!
View openings

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Donate

Use the Python range() Function to Generate Sequences of Numbers

Tyler Tyler (258)
0
Updated: September 20th, 2019

In Python, range is an immutable sequence type, meaning it’s a class that generates a sequence of numbers that cannot be modified. The main advantage to the range class over other data types is that it is memory efficient. No matter how large a sequence you want to iterate over, the range class only stores the start, stop, and step values (we’ll cover these later), not the entire sequence of numbers.

In this guide we’ll cover various was to use the range class.

Posted in these interests:

python
PRIMARY
88 subscribers

While it looks more like a built-in function, range is actually a class. So when you use range, you’re actually passing arguments into the range constructor.

When given a single argument, range will use this value as the stop value. Stop refers to the end of the sequence. Keep in mind that range sequences are not inclusive, meaning the sequence will contain numbers up to but not including the stop value.

range(stop)

Example:

list(range(10))

Output:

[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Note: In order to see the numbers in the sequence, we must convert the sequence to a list.

Notice how range assumes a start value of 0 and that the sequence contains numbers up to but not including the stop value.

As one might guess, you can also specify the start value. When two arguments are passed to the range constructor, the first is start and the second is stop.

range(start, stop)

Example:

list(range(10, 20))

Output:

[10, 11, 12, 13, 14, 15, 16, 17, 18, 19]

The default step value is 1, but sometimes we’ll want to increment by something other than 1. If provided a third argument, it will be used as the step value.

range(start, stop, step)

Example:

list(range(10, 20, 2))

Output:

[10, 12, 14, 16, 18]

Iterating over a range of numbers is easy using the Python for loop.

Example:

for x in range(5): print(x)

Output:

0 1 2 3 4

You can use the range function to iterate a specific number of times, even when you don’t need to access each element of the sequence.

Imagine we want to build a string that contains ten of a certain character.

Example:

result = '' for x in range(10): result += '#' print(result)

Output:

##########

In this example, range provides a memory efficient way of iterating exactly ten times.

Python provides a built-in function for reversing sequences called reversed.

Example:

list(reversed(range(10)))

Output:

[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]

You can access indexes of a range as well as use slice notation to get a subsection of the sequence.

Example:

list(range(100)[10:20])

Output:

[10, 11, 12, 13, 14, 15, 16, 17, 18, 19]

At this point, you should have a solid understanding of what the range class is and how it’s used. Do you have any questions or feedback? Let me know in the comments below.

Follow @howchoo and learn cool things!
Like us on Facebook:
Subscribe to our YouTube channel:
Follow us on Twitter:

Want to support howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Total time: 45 minutes 
Updated: September 20th, 2019
Calling all writers!

We’re hiring. Write for Howchoo

slack
PRIMARY
7 guides
pi
215 guides
amazon
17 guides
Note

There will likely be multiple ARP requests being made across your home network, which can be confusing. You may need to press the dash button multiple times to ensure you found the correct device MAC.

Note

The dash button itself has a built in timeout of about 5 seconds. Any value below 5000 will remove any timeout control from the Dashgong script.

Calling all writers!

We’re hiring. Write for Howchoo

Jeremy's profile pictureJeremy
Joined in 2015
Programmer, brogrammer, whoagrammer.
Find a list of all the reminders you’ve already set.
Zach's profile picture ZachView
In these interests: slack
Set up recurring Slack notifications in minutes (without an app).
Zach's profile picture ZachView
In these interests: slack
Slack doesn’t officially support this but we’re going to do it anyway.
Ash's profile picture AshView
In these interests: slack
For Raspberry Pi beginners who still love to follow along in a book.
What’s better than an experiment? An experiment in space!
Kali Linux is a great distribution for Raspberry Pi users who want to get to grips with security testing.
One man’s junk is another man’s Pi project.
This Raspberry Pi project takes us to the stars.
Don’t skimp on your RetroPie controller—get the best!
The Raspberry Pi micro-computer grows in power with each new model release, with more resources that make it a more capable, low-cost content server for your media and resources.
slack
PRIMARY
Guides for our favorite messaging app!
The Raspberry Pi is a small, inexpensive computer developed by the Raspberry Pi Foundation in the United Kingdom.

How to Disable the TouchUI Screensaver

Prevent your OctoPrint touchscreen from sleeping.
Zach Zach (233)
Total time: 5 minutes 
Updated: September 20th, 2019

This short guide will teach you how to disable the screensaver, or “screen sleep”, that occurs after a few minutes of inactivity when using the TouchUI plugin. This will ensure that your OctoPrint touchscreen is always showing relevant information without needing to tap the screen.

Posted in these interests:

octoprint
PRIMARY
14 guides
Updating TouchUI BootloaderUpdating TouchUI Bootloader

Make sure your TouchUI bootloader is up to date by connecting to your Raspberry Pi:

ssh pi@octopi

Then, run the following commands:

cd ~/TouchUI-autostart/
git pull
sudo service touchui restart

If you made changes to your TouchUI files previously before and receive a pull error, run the following:

git reset --hard
Disabling TouchUI screensaverDisabling TouchUI screensaver

Edit the TouchUI default file using the Nano editor:

sudo nano /etc/default/touchui

Change DISABLE_SCREENSAVER=false to DISABLE_SCREENSAVER=true. Then, press CTRL-X to exit and then Y to save.

Finally, restart the TouchUI service:

sudo service touchui restart

You’re all done! NO MORE SLEEP… PRINT THINGS FOREVER.

How to Disable the TouchUI Screensaver

Prevent your OctoPrint touchscreen from sleeping.
Zach Zach (233)
Total time: 5 minutes 
Updated: September 20th, 2019

This short guide will teach you how to disable the screensaver, or “screen sleep”, that occurs after a few minutes of inactivity when using the TouchUI plugin. This will ensure that your OctoPrint touchscreen is always showing relevant information without needing to tap the screen.

Posted in these interests:

octoprint
PRIMARY
14 guides
Updating TouchUI BootloaderUpdating TouchUI Bootloader

Make sure your TouchUI bootloader is up to date by connecting to your Raspberry Pi:

ssh pi@octopi

Then, run the following commands:

cd ~/TouchUI-autostart/
git pull
sudo service touchui restart

If you made changes to your TouchUI files previously before and receive a pull error, run the following:

git reset --hard
Disabling TouchUI screensaverDisabling TouchUI screensaver

Edit the TouchUI default file using the Nano editor:

sudo nano /etc/default/touchui

Change DISABLE_SCREENSAVER=false to DISABLE_SCREENSAVER=true. Then, press CTRL-X to exit and then Y to save.

Finally, restart the TouchUI service:

sudo service touchui restart

You’re all done! NO MORE SLEEP… PRINT THINGS FOREVER.

Disabling TouchUI Screensaver

How to Disable the TouchUI Screensaver

Prevent your OctoPrint touchscreen from sleeping.
Zach Zach (233)
Total time: 5 minutes 
Updated: September 20th, 2019

This short guide will teach you how to disable the screensaver, or “screen sleep”, that occurs after a few minutes of inactivity when using the TouchUI plugin. This will ensure that your OctoPrint touchscreen is always showing relevant information without needing to tap the screen.

Posted in these interests:

octoprint
PRIMARY
14 guides
Updating TouchUI BootloaderUpdating TouchUI Bootloader

Make sure your TouchUI bootloader is up to date by connecting to your Raspberry Pi:

ssh pi@octopi

Then, run the following commands:

cd ~/TouchUI-autostart/
git pull
sudo service touchui restart

If you made changes to your TouchUI files previously before and receive a pull error, run the following:

git reset --hard
Disabling TouchUI screensaverDisabling TouchUI screensaver

Edit the TouchUI default file using the Nano editor:

sudo nano /etc/default/touchui

Change DISABLE_SCREENSAVER=false to DISABLE_SCREENSAVER=true. Then, press CTRL-X to exit and then Y to save.

Finally, restart the TouchUI service:

sudo service touchui restart

You’re all done! NO MORE SLEEP… PRINT THINGS FOREVER.

How to Disable the TouchUI Screensaver

Prevent your OctoPrint touchscreen from sleeping.
Zach Zach (233)
Total time: 5 minutes 
Updated: September 20th, 2019

This short guide will teach you how to disable the screensaver, or “screen sleep”, that occurs after a few minutes of inactivity when using the TouchUI plugin. This will ensure that your OctoPrint touchscreen is always showing relevant information without needing to tap the screen.

Posted in these interests:

octoprint
PRIMARY
14 guides

How to Disable the TouchUI Screensaver

octoprint
Prevent your OctoPrint touchscreen from sleeping.
Zach Zach (233)
Total time: 5 minutes 
Updated: September 20th, 2019
Zach
1
 

Posted in these interests:

octoprint
PRIMARY
14 guides
octoprint
PRIMARY
14 guides
PRIMARY
Disabling TouchUI Screensaver
Calling all writers!

We’re hiring. Write for Howchoo

1
 
In these interests
octoprint
PRIMARY
14 guides
octoprint
PRIMARY
14 guides
PRIMARY
Disabling TouchUI Screensaver
Updating TouchUI BootloaderUpdating TouchUI Bootloader

Make sure your TouchUI bootloader is up to date by connecting to your Raspberry Pi:

ssh pi@octopi

Then, run the following commands:

cd ~/TouchUI-autostart/
git pull
sudo service touchui restart

If you made changes to your TouchUI files previously before and receive a pull error, run the following:

git reset --hard
Disabling TouchUI screensaverDisabling TouchUI screensaver

Edit the TouchUI default file using the Nano editor:

sudo nano /etc/default/touchui

Change DISABLE_SCREENSAVER=false to DISABLE_SCREENSAVER=true. Then, press CTRL-X to exit and then Y to save.

Finally, restart the TouchUI service:

sudo service touchui restart

You’re all done! NO MORE SLEEP… PRINT THINGS FOREVER.

Updating TouchUI BootloaderUpdating TouchUI Bootloader

Make sure your TouchUI bootloader is up to date by connecting to your Raspberry Pi:

ssh pi@octopi

Then, run the following commands:

cd ~/TouchUI-autostart/
git pull
sudo service touchui restart

If you made changes to your TouchUI files previously before and receive a pull error, run the following:

git reset --hard
Updating TouchUI BootloaderUpdating TouchUI Bootloader

Make sure your TouchUI bootloader is up to date by connecting to your Raspberry Pi:

ssh pi@octopi

Then, run the following commands:

cd ~/TouchUI-autostart/
git pull
sudo service touchui restart

If you made changes to your TouchUI files previously before and receive a pull error, run the following:

git reset --hard

Update your TouchUI bootloader

Mentioned here
How to Connect to a Raspberry Pi Remotely via SSH How to Connect to a Raspberry Pi Remotely via SSHThe preferred (and most common) method of connecting to your Pi to run commands.
How to Connect to a Raspberry Pi Remotely via SSH
Disabling TouchUI screensaverDisabling TouchUI screensaver

Edit the TouchUI default file using the Nano editor:

sudo nano /etc/default/touchui

Change DISABLE_SCREENSAVER=false to DISABLE_SCREENSAVER=true. Then, press CTRL-X to exit and then Y to save.

Disabling TouchUI screensaverDisabling TouchUI screensaver

Edit the TouchUI default file using the Nano editor:

sudo nano /etc/default/touchui

Change DISABLE_SCREENSAVER=false to DISABLE_SCREENSAVER=true. Then, press CTRL-X to exit and then Y to save.

Edit the TouchUI default file

Finally, restart the TouchUI service:

sudo service touchui restart

You’re all done! NO MORE SLEEP… PRINT THINGS FOREVER.

Finally, restart the TouchUI service:

sudo service touchui restart

You’re all done! NO MORE SLEEP… PRINT THINGS FOREVER.

Restart TouchUI

Calling all writers!

We’re hiring. Write for Howchoo

Zach's profile pictureZach
Joined in 2015
Web developer, designer, tinkerer, and beer enthusiast living in Tampa, Florida.
Zach's profile picturehowchoo
Share this guide!
RedditEmailText
Related to this guide:
OctoPrint touchscreenOctoPrint touchscreen
An inexpensive upgrade that improves the printing experience
Zach's profile picture ZachView
In these interests: pioctoprint3dprinting
Tyler's profile pictureViewprusaoctoprint3dprintingAsh's profile pictureView3dprintingpioctoprint
OctoPrint touchscreenOctoPrint touchscreen
An inexpensive upgrade that improves the printing experience
Zach's profile picture ZachView
In these interests: pioctoprint3dprinting
Zach's profile pictureViewpioctoprint3dprinting
People also read:
OctoPrint dark theme
Will somebody please think of the eyes!
OctoPrint FAQs
What’s got 8 legs and tons of questions?
The OctoPrint octopus holding a power port and plug
Wrap your tentacles around these sweet plugins!
Now you can monitor your prints from the coffee shop!
Update OctoPrint
Keep your OctoPrint setup up to date.
The Spaghetti Detective
Access OctoPrint from anywhere with this OctoPrint Anywhere replacement.
Ender 3 OctoPrint touchscreen
An inexpensive upgrade to make your Ender 3 even better!
OctoPrint dark theme
Will somebody please think of the eyes!
OctoPrint FAQs
What’s got 8 legs and tons of questions?
The OctoPrint octopus holding a power port and plug
Wrap your tentacles around these sweet plugins!
Now you can monitor your prints from the coffee shop!
OctoPrint dark theme
OctoPrint dark themeHow to Enable the OctoPrint Dark Theme
OctoPrint FAQs
OctoPrint FAQsOctoPrint FAQ – Everything You Need to Know About Octoprint
The OctoPrint octopus holding a power port and plug
The OctoPrint octopus holding a power port and plugThe Most Popular OctoPrint Plugins (And How to Install Them)
OctoPrint Anywhere: Access OctoPrint Remotely Over the Internet
OctoPrint
OctoPrintOctoPrint: Control Your 3D Printer Remotely with Raspberry Pi and OctoPi
Update OctoPrint
Keep your OctoPrint setup up to date.
The Spaghetti Detective
Access OctoPrint from anywhere with this OctoPrint Anywhere replacement.
Ender 3 OctoPrint touchscreen
An inexpensive upgrade to make your Ender 3 even better!
OctoPrint Ender 3
OctoPrint Ender 3How to Set Up and Use OctoPrint on the Creality Ender 3
Update OctoPrint
Update OctoPrintHow to Update OctoPrint
The Spaghetti Detective
The Spaghetti DetectiveHow to Access OctoPrint Remotely With the Spaghetti Detective
Ender 3 OctoPrint touchscreen
Ender 3 OctoPrint touchscreenHow to Add an OctoPrint Touchscreen to Your Ender 3
Powering a Raspberry Pi using a 3D printer
Powering a Raspberry Pi using a 3D printerHow to Power a Raspberry Pi from a 3D Printer Using Your Printer’s Power Supply Unit (PSU)
Posted in these interests:
octoprintoctoprint
octoprint
PRIMARY
Discover awesome OctoPrint guides and projects and control your 3D printer remotely! Just getting started? Learn how to install OctoPrint.
octoprintoctoprint
octoprint
PRIMARY
Discover awesome OctoPrint guides and projects and control your 3D printer remotely! Just getting started? Learn how to install OctoPrint.
PRIMARY
Explore
Discuss this guide:
We’re hiring!
Are you a passionate writer? We want to hear from you!
We’re hiring!
Are you a passionate writer? We want to hear from you!
View openings

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Donate

How to Improve Voice Memo Audio Quality in iOS

Improve voice recording quality on your iPhone in about 30 seconds.
Zach Zach (233)
Total time: 1 minute 
Updated: September 17th, 2019

This short guide will show you how to improve voice sound quality when recording audio on your iPhone using the Voice Memo app.

I use this app alongside my lavalier microphone when recording a lot of Howchoo videos. Therefore, I want to ensure I get the highest voice quality possible so that my tutorial videos come out super clear.

Here’s everything you’ll need to complete this guide:

iPhoneiPhone×1

How to Improve Voice Memo Audio Quality in iOS

Improve voice recording quality on your iPhone in about 30 seconds.
Zach Zach (233)
Total time: 1 minute 
Updated: September 17th, 2019

This short guide will show you how to improve voice sound quality when recording audio on your iPhone using the Voice Memo app.

I use this app alongside my lavalier microphone when recording a lot of Howchoo videos. Therefore, I want to ensure I get the highest voice quality possible so that my tutorial videos come out super clear.

Here’s everything you’ll need to complete this guide:

iPhoneiPhone×1
Jump to step

How to Improve Voice Memo Audio Quality in iOS

Improve voice recording quality on your iPhone in about 30 seconds.
Zach Zach (233)
Total time: 1 minute 
Updated: September 17th, 2019

This short guide will show you how to improve voice sound quality when recording audio on your iPhone using the Voice Memo app.

I use this app alongside my lavalier microphone when recording a lot of Howchoo videos. Therefore, I want to ensure I get the highest voice quality possible so that my tutorial videos come out super clear.

Here’s everything you’ll need to complete this guide:

iPhoneiPhone×1

How to Improve Voice Memo Audio Quality in iOS

Improve voice recording quality on your iPhone in about 30 seconds.
Zach Zach (233)
Total time: 1 minute 
Updated: September 17th, 2019

This short guide will show you how to improve voice sound quality when recording audio on your iPhone using the Voice Memo app.

I use this app alongside my lavalier microphone when recording a lot of Howchoo videos. Therefore, I want to ensure I get the highest voice quality possible so that my tutorial videos come out super clear.

Here’s everything you’ll need to complete this guide:

iPhoneiPhone×1

How to Improve Voice Memo Audio Quality in iOS

iosiphone
Improve voice recording quality on your iPhone in about 30 seconds.
Zach Zach (233)
Total time: 1 minute 
Updated: September 17th, 2019
Zach
 
1

Here’s everything you’ll need to complete this guide:

iPhoneiPhone×1
iPhoneiPhone×1
iPhone
Jump to step
Calling all writers!

We’re hiring. Write for Howchoo

 
1
In these interests
ios
PRIMARY
27 guides
iphone
29 guides
ios
PRIMARY
27 guides
iphone
29 guides
PRIMARY
Jump to step
iOS Settings control paneliOS Settings control panel

Click the ol’ settings icon on your phone.

iOS Voice Memo settingsiOS Voice Memo settings

Search for Voice Memos to access the Voice Memo Settings control panel.

iOS Voice Memo lossless audio qualityiOS Voice Memo lossless audio quality

Change Audio Quality from Compressed to Lossless.

Close settings. Now you can record lossless audio on your iPhone!

iOS Settings control paneliOS Settings control panel

Click the ol’ settings icon on your phone.

iOS Settings control paneliOS Settings control panel

Click the ol’ settings icon on your phone.

Open Settings

iOS Voice Memo settingsiOS Voice Memo settings

Search for Voice Memos to access the Voice Memo Settings control panel.

iOS Voice Memo settingsiOS Voice Memo settings

Search for Voice Memos to access the Voice Memo Settings control panel.

Open Voice Memo settings

iOS Voice Memo lossless audio qualityiOS Voice Memo lossless audio quality

Change Audio Quality from Compressed to Lossless.

Close settings. Now you can record lossless audio on your iPhone!

iOS Voice Memo lossless audio qualityiOS Voice Memo lossless audio quality

Change Audio Quality from Compressed to Lossless.

Close settings. Now you can record lossless audio on your iPhone!

Change the Audio Quality option

Calling all writers!

We’re hiring. Write for Howchoo

Zach's profile pictureZach
Joined in 2015
Web developer, designer, tinkerer, and beer enthusiast living in Tampa, Florida.
Zach's profile picturehowchoo
Share this guide!
RedditEmailText
Related to this guide:
Reset Network Settings on iOSReset Network Settings on iOS
Trouble connecting with your iOS device? Try this.
Ash's profile picture AshView
In these interests: networkingios
Disabling memoji stickersDisabling memoji stickers
The memoji stickers in iOS are fun about once. After that, they consume way more real estate than most people want when opening the emoji panel.
Dayne's profile picture DayneView
In these interests: ios
Close all tabs at once on mobile SafariClose all tabs at once on mobile Safari
Sometimes we wind up with too many open tabs and a bit of house cleaning is in order. Fortunately, this can be done with one action.
Tyler's profile picture TylerView
In these interests: iossafari
Reset Network Settings on iOSReset Network Settings on iOS
Trouble connecting with your iOS device? Try this.
Ash's profile picture AshView
In these interests: networkingios
Ash's profile pictureViewnetworkingios
Disabling memoji stickersDisabling memoji stickers
The memoji stickers in iOS are fun about once. After that, they consume way more real estate than most people want when opening the emoji panel.
Dayne's profile picture DayneView
In these interests: ios
Dayne's profile pictureViewios
Close all tabs at once on mobile SafariClose all tabs at once on mobile Safari
Sometimes we wind up with too many open tabs and a bit of house cleaning is in order. Fortunately, this can be done with one action.
Tyler's profile picture TylerView
In these interests: iossafari
Tyler's profile pictureViewiossafari
People also read:
This guide will show you how to block all unknown callers on iOS. Or said differently, this guide will show you how to only allow calls from people on your contacts list.
Along with the benefits of mobile technology comes the risk of abuse. Whether it’s a stalker or a telemarketer, learning how to block a caller can save you a lot of stress.
I heart howchoo iPhone message
Because we all need to change things up from time to time in our digital conversations!
iPhone Font Size Scroll
Finding the text hard to read on your iPhone? This guide will help you out!
Arrow to HDR
Ever notice that little HDR feature that appears for certain photographs on your iPhone? It’s called High Dynamic Range. Check out our guide on HDR and when to use it.
person holding iPhone taking HDR photo
Hint…it’s NOT high definition resolution.
Delete iPhone apps
Deleting has never been easier
iPhone Backup
Just put it on the cloud with everything else.
This guide will show you how to block all unknown callers on iOS. Or said differently, this guide will show you how to only allow calls from people on your contacts list.
Along with the benefits of mobile technology comes the risk of abuse. Whether it’s a stalker or a telemarketer, learning how to block a caller can save you a lot of stress.
I heart howchoo iPhone message
Because we all need to change things up from time to time in our digital conversations!
iPhone Font Size Scroll
Finding the text hard to read on your iPhone? This guide will help you out!
Arrow to HDR
Ever notice that little HDR feature that appears for certain photographs on your iPhone? It’s called High Dynamic Range. Check out our guide on HDR and when to use it.
How to block ALL unknown callers in iOS
How to Block and Unblock Callers in iOS 9
I heart howchoo iPhone message
I heart howchoo iPhone messageHow to Change the Font on Your iPhone
iPhone Font Size Scroll
iPhone Font Size ScrollHow to Change the Font Size on Your iPhone
Arrow to HDR
Arrow to HDRHow to Turn On the iPhone Camera’s HDR
person holding iPhone taking HDR photo
Hint…it’s NOT high definition resolution.
Delete iPhone apps
Deleting has never been easier
iPhone Backup
Just put it on the cloud with everything else.
person holding iPhone taking HDR photo
person holding iPhone taking HDR photoWhat is HDR on an iPhone Camera?
Add work email to iPhone.
Add work email to iPhone.How to Add Your Work Email to Your iPhone
iPhone block number
iPhone block numberHow to Block a Number on an iPhone
Delete iPhone apps
Delete iPhone appsHow to Delete Apps on an iPhone
iPhone Backup
iPhone BackupHow to Back Up Your iPhone
Posted in these interests:
iosios
ios
PRIMARY
iOS is the mobile operating system used by the iPhone, iPad, and iPod Touch.
iosios
ios
PRIMARY
iOS is the mobile operating system used by the iPhone, iPad, and iPod Touch.
PRIMARY
ExploreExplore
Discuss this guide:
We’re hiring!
Are you a passionate writer? We want to hear from you!
We’re hiring!
Are you a passionate writer? We want to hear from you!
View openings

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Donate

How to Unsend Sent Emails in Gmail

How to Unsend Sent Emails in GmailHow to Unsend Sent Emails in Gmail
Nate Nate (15)
Total time: 3 minutes 
Updated: September 16th, 2019

Everybody makes mistakes. At last, Google has given us the ability to undo sent emails in Gmail. This guide shows you how to enable, configure, and use this feature so that you can cancel sent emails and save yourself from embarrassing situations.

Posted in these interests:

gmail
PRIMARY
1 guide
internet
71 guides
google
11 guides
Open Gmail SettingsOpen Gmail Settings

From your Gmail account, click on the gear icon in the top right and select Settings.

Enable Undo SendEnable Undo Send

On the General tab, check “Enable Undo Send”.

Configure the time windowConfigure the time window

Using the dropdown, change the cancellation period. Unfortunately, the longest period of time you can select is 30 seconds, but this should be enough time to realize that you just sent a cat photo to everyone on your contact list. Scroll down and click Save Changes.

Unsend an emailUnsend an email

After sending an email, you’ll see an Undo link. Click it within the time window you specified and it will cancel the send and also open a draft version of the email so that you can make your correction. Pretty slick!

We’re hiring!
Are you a passionate writer? We want to hear from you!

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Nate's profile pictureNate
Joined in 2015
Kerbal Space Industrialist and Walking Beard
Related to this guide:
block websites on Chromeblock websites on Chrome
Create and manage your own blacklist.
Ash's profile picture AshView
In these interests: internetchrome
How to Use a RouterHow to Use a Router
Understand what your wireless router is capable of and what you can do with it.
Ash's profile picture AshView
In these interests: routerinternetnetworking
How to Delete All Google Chrome Saved Passwords at OnceHow to Delete All Google Chrome Saved Passwords at Once
Don’t want to delete your passwords one at a time? No problem.
Zach's profile picture ZachView
In these interests: securitygooglechrome
People also read:
Clear Browser History
If you’ve got tracks to cover, you need to clear your browser history. Clearing your history is different from clearing your browser cache.
Clear Browser Cache
Trouble loading web pages? Try clearing your cache!
Troubleshooting Comcast Routers
The most common issues and how to fix them.
Free Google Home Mini from Spotify
Spotify is giving a Google Home Mini to every paying member.
Google Chrome power users likely make use of profiles to manage various browsing contexts. There are many advantages to doing so.
How to get free WiFi
Get some bandwidth at no charge!
Posted in these interests:
gmailgmail
gmail
PRIMARY
internetinternet
A series of tubes.
Discuss this guide:
We’re hiring!
Are you a passionate writer or editor? We want to hear from you!
We’re hiring!
Are you a passionate writer or editor? We want to hear from you!

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.

Want to support Howchoo? When you buy a tool or material through one of our Amazon links, we earn a small commission as an Amazon Associate.