How to edit hosts file in Windows, MacOS and Linux
As we all know, the DNS (Domain Name System) is the internet’s phone book. However, did you know that your computer’s hosts file can also be used as a domain name directory? This article will explain what the hosts file is and how to edit it in Windows 10, Linux, and Mac to simulate DNS changes.
What is a hosts file
A hosts file is a local file that contains domain names and their matching IP addresses. It’s found in all common operating systems and acts as a map, identifying and locating hosts on IP networks.
When you visit a website, your computer first checks the hosts file to see which IP address it connects to. If the information is not present, your internet service provider will search the DNS for the resources needed to load the site.
Why modify the hosts file
You can take advantage of the situation above when you’ve just purchased a domain. Or, when you’re migrating your website to a different hosting provider and your domain needs to point to the new server. Usually, it’ll take 24 to 48 hours for your domain to start working, and during that time, you won’t be able to access your site.
By editing the hosts file, specifically adding a custom IP address that points to your domain, you’ll be able to open your website. This is useful if you want to modify your site after migrating and see how it’ll look on the new server.
The hosts file is written in plain-text format. Hence, you can use any text editor like Notepad, for example, to edit it.
However, do keep in mind that the changes will only affect the system that the hosts file is in.
How to edit hosts file in Windows 10
Before we begin, you’ll need an IP address for your domain:
- Login to your hPanel, then on the left sidebar navigate to Hosting → Plan Details → Website IP address.
- Copy the IP address:
Now let’s edit the hosts file. There are two methods for Windows 10 – manually or using the Hosts File Editor tool. Generally, you can use the guides below in any version of Windows.
Change the file manually
- Press Start and find Notepad. Right-click to Run as administrator.
- Once in Notepad, go to File → Open. Get to C:\Windows\System32\Drivers\etc and make sure to select All Files to find the hosts file.
- Now you can edit the hosts file. Add the custom IP address you’ve made earlier, followed by a space, then your domain name.
- When you’re finished, don’t forget to save your changes.
Using Hosts File Editor tool
There’s an easier way to edit the hosts file in Windows 10, and that’s by using the Hosts File Editor.
- Once you’re in the Hosts File Editor, fill your targeted IP address and the domain name under their columns.
- Save your changes.
How to edit hosts file in Linux
In Linux, you can use your favorite text editor to do the job. Here, we will use Gedit in Ubuntu. Open the Terminal by pressing Ctrl+Alt+T.
- Type the command below, then key in your admin password:
sudo su
- To open the hosts file using Gedit, type the following command and press Enter:
sudo gedit /etc/hosts
- Add the targeted IP address followed by a space, then the domain name at the bottom of the hosts file, just like on the Windows 10 tutorial.
- Save your changes.
How to edit hosts file in macOS
If you’re running macOS from Leopard (10.6) to its latest version, follow these steps to edit the Mac hosts file:
- Click on the Launchpad and open Terminal.
- We’ll be using the Nano Editor. To run it as an administrator, insert the statement below, and press Enter:
sudo nano /private/etc/hosts
- Type in your password. You’ll be directed to the hosts file.
- Add your chosen IP address, followed by the domain name, separated by a space.
- Make sure to save your changes using the Ctrl + O shortcut.
For more detailed steps on editing the hosts file on MacOS, check out our guide.
Conclusion
You’ve just learned how to edit the hosts file on three different operating systems.
However, do keep in mind that these changes require administrative rights on every system, and it will only take effect on the computer that the hosts file is in.
Here’s a quick recap:
- Windows 10 ‒ use any text editor, like Notepad, to modify the file or use the Hosts File Editor.
- Linux ‒ use either Gedit or any other text editor you prefer.
- Mac ‒ resort to the Nano Editor via the Terminal.
Good luck!