Activity
Mon
Wed
Fri
Sun
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
What is this?
Less
More

Owned by Jonathan

AZDevOpsDojo

50 members • Free

From spinning up Azure environments to creating Kubernetes clusters and refining DevOps practices, I’m here to make infrastructure accessible and fun.

Memberships

Fitdad Collective

49 members • Free

Synthesizer

33k members • Free

Mobility Toolkit

32.3k members • Free

Azure Innovation Station

540 members • Free

The Dad Hustle Network

10 members • Free

KubeCraft (Free)

10.9k members • Free

Linux Infrastructure Academy

59 members • Free

Agent-N

6.2k members • Free

Home Lab Explorers

1k members • Free

2 contributions to Linux Infrastructure Academy
Website??...💻🌐
Does anyone in this community build websites? 👀
0 likes • Aug 27
@Michael Sanderson cool! Any particular frameworks or CMS systems?
1 like • Aug 27
@Michael Sanderson I’ll have to look into GHL, looks like an interesting framework if my Google pointed me to the right thing. I’m pretty good at WordPress. Looks like you are in Tampa? We’ll have to do a meet up if you ever find yourself in Clearwater.
⚙️ Linux Tip of the Day: The Hosts File
The /etc/hosts file is a fundamental system file that plays a key role in how your Linux machine resolves domain names to IP addresses. It's essentially a local, manually managed DNS table. When you type a hostname like www.google.com into your browser, your system first checks /etc/hosts to see if there's a corresponding IP address listed there before sending a query to an external DNS server. This local check makes resolution extremely fast since no network communication is required. 🎯 Primary Uses * Blocking Websites: This is a common use for parents or system administrators. By mapping a domain to your local machine's loopback address (127.0.0.1), you can effectively prevent access to a site. For example, adding 127.0.0.1 twitter.com will block access to Twitter on your machine. * Local Development: Developers use the hosts file to test web applications before they go live on a public server. By adding an entry like 192.168.1.10 myapp.local, they can access their development server using a user-friendly hostname instead of an IP address. This mimics a live environment. * Network Shortcuts: You can create simple, memorable hostnames for devices on your local network. Instead of remembering 192.168.1.50 for your network printer, you could add 192.168.1.50 printer to your hosts file and simply type printer into your browser or command line to access it. ✍️ Editing the File The /etc/hosts file requires root permissions to edit. You can use a text editor like nano or vim with the sudo command. A good practice is to always back up the original file before making any changes. * Backup: sudo cp /etc/hosts /etc/hosts.bak * Edit: sudo nano /etc/hosts * Add your entries: Add new lines with the format IP_address hostname. * Save and Exit: Press Ctrl+O to save and Ctrl+X to exit in nano. After editing and saving, the changes take effect immediately without needing to restart any services. 🛡️ Important Notes * Comments: Lines starting with a # are ignored by the system and can be used to add comments for clarity. For example, # Blocked for security.
0 likes • Aug 23
Host files come in handy! I helped a small school block a bunch of websites that way.
1-2 of 2
Jonathan Ingram
1
4points to level up
@jonathan-ingram-1935
Cloud, containers, code—meet Jonathan. From Azure environments to Kubernetes clusters and DevOps, I’m here to make infrastructure accessible and fun.

Active 3d ago
Joined Aug 22, 2025
Florida