Useful Linux commands for DNS troubleshooting

DNS issues usually come down to a few things: broken connectivity, bad configs, or flaky DNS servers—any of which can stop domains from resolving properly.

Here are useful commands for diagnosing DNS issues on Linux 😎👆

Find high-res pdf ebooks with all my latest Linux infographics at https://study-notes.org/linux-ebook.html

#linux #devops #network #techtips #networkengineer

4/9 Edited to

... Read moreHey everyone! 👋 As someone who’s spent countless hours troubleshooting network hiccups, I know how frustrating a seemingly simple DNS issue can be. It often feels like the internet just… stops working! But don't worry, over time I've gathered a collection of go-to Linux commands that have saved me from countless headaches. I wanted to share them with you in a practical, easy-to-understand way, just like a friend passing on their best tech tips. First off, when you’re facing a 'cannot resolve domain' error, the first thing I usually check is my DNS server's status. Are they even running? On modern Linux systems, systemctl status systemd-resolved or resolvectl status are my best friends. These commands give you a quick overview of your resolver's health and the DNS servers it's currently using. If systemd-resolved isn't active, that's often your culprit right there! Next, to really dive into performing lookups, I rely heavily on dig, nslookup, and host. Each has its strengths. For a comprehensive DNS query and response, dig google.com is my absolute favorite. It shows you everything from the authoritative DNS server to the query time. If I need a quick, simple lookup, host google.com does the trick. And nslookup is a classic, great for interactive queries. I remember one time, my website wasn't resolving correctly, and dig quickly showed me an incorrect A record, which nslookup also confirmed, leading me straight to the configuration error! Examining configurations is another crucial step. The /etc/resolv.conf file is where your system lists the DNS servers it uses. I always check this file to ensure it points to valid, reachable servers. Sometimes, NetworkManager might be managing your connections, so nmcli device show <interface name> can also reveal DNS server settings. It’s like peeking behind the curtain to see if your system is actually talking to the right DNS servers. If DNS lookups are failing, but your DNS servers seem fine, it might be a connectivity issue. This is where analyzing network routes comes in handy. I use ip route show to check my routing table and ensure I have a path to the internet. More importantly, traceroute <DNS server IP> or mtr <DNS server IP> are invaluable. They show you every hop your packets take to reach the DNS server, helping you pinpoint exactly where connectivity breaks down. I once found a router in my home network that was silently dropping packets to my ISP's DNS, and mtr helped me identify it in minutes! Finally, don't forget reviewing logs. Your system logs often hold clues to what went wrong. For systemd-resolved issues, journalctl -u systemd-resolved is the command to use. For more general network problems, dmesg or journalctl -k might reveal kernel-level errors related to your network interface. It's like being a detective, piecing together the story from system messages. By systematically going through these commands, I've managed to diagnose and fix countless DNS issues on my Linux machines. It's not just about knowing the commands, but understanding what they tell you and how to interpret the output. Hopefully, these tips and my personal experiences help you conquer your next Linux DNS challenge!

Related posts

Google Sheets keyboard shortcuts
Google Sheets is a cloud based spreadsheet tool for organizing, analyzing, and sharing data online. Keyboard shortcuts make work faster and more efficient, esp when you are working with large datasets or performing frequent edits Here are useful keyboard shortcuts for Google Sheets 😎👆 Find
Learn Linux with Dan

Learn Linux with Dan

693 likes

This image presents a comprehensive list of web browser shortcuts, categorized for efficient use. It includes shortcuts for tab and window management, navigation and search, page interaction, bookmarking and history, and developer tools, created by Dan Nanni.
Useful web browser shortcuts
Tired of clicking around like it’s 2005? Browser shortcuts are the slick, time-saving tricks that make surfing the web faster and way more efficient Here are useful web browser shortcuts that work across different browsers 😎👆 #software #productivity Find high-res pdf books with all my #
Learn Linux with Dan

Learn Linux with Dan

118 likes

An infographic titled 'DNS Troubleshooting on Linux' by Dan Nanni, listing commands to diagnose DNS issues. It includes commands to check systemd-resolved status, find DNS server IP, test server reachability (ping, dig), trace routes, and examine DNS-related logs (journalctl, grep).
Linux commands for DNS troubleshooting
DNS issues can stem from a range of sources, network connectivity failures, misconfigured settings, or problems with the DNS servers themselves, all of which can disrupt domain name resolution Here are commands for diagnosing DNS issues on Linux 😎👇 #softwaredeveloper #technology #TechTips
Learn Linux with Dan

Learn Linux with Dan

4 likes

Powerful Websites
#freewebsite #website #fromsoftware #fyplemon8 #fyp
Tha Smoke Websites

Tha Smoke Websites

743 likes

An infographic titled 'Linux curl Command Examples' provides a comprehensive list of curl commands. It covers HTTP GET operations with options like user-agent and custom headers, HTTP POST/PUT operations for data and file uploads, and various file download operations including resuming and rate-limiting. Created by Dan Nanni.
Linux curl command examples
The curl command is a flexible tool that lets you send or receive data from servers using protocols like HTTP, HTTPS, FTP, and others, all from the command line Here are useful curl command examples 😎👆 #devops #opensource #software #TechTips Find high-res pdf books with all my #lin
Learn Linux with Dan

Learn Linux with Dan

7 likes

An infographic titled 'Useful TUI Linux Software' with a Tux penguin logo. It defines TUI as Text-based User Interface for terminal environments and lists various software categorized under Disk Manager, System Monitor, Web Browser, Network Manager/Monitor, Multimedia, GPT, Git, Coding, File Manager, and Messaging.
Useful TUI software on Linux
Linux TUI (Text User Interface) software offers a user-friendly way to interact with applications directly from the terminal, using text-based menus and interfaces instead of a graphical desktop environment Here are a categorized list of useful TUI software available on Linux 😎👆 #software #o
Learn Linux with Dan

Learn Linux with Dan

4 likes

Linux commands for hardware information
Knowing your hardware is essential for effective troubleshooting, system tuning, and performance optimization. That’s why it’s important to be familiar with the OS tools that let you examine different parts of your system’s hardware Here are a list of useful Linux commands for looking up hardwar
Learn Linux with Dan

Learn Linux with Dan

4 likes

Useful sysdig command examples
Sysdig is one of those hidden gem tools that shows exactly what your Linux system is doing in real time — system calls, containers, network traffic, file access — everything, no guessing. Here are useful sysdig command examples 😎👆 Find high-res pdf ebooks with all my cybersecurity related inf
Learn Linux with Dan

Learn Linux with Dan

5 likes

A Linux watch command cheatsheet created by Dan Nanni, listing various commands to monitor system metrics in real-time. Examples include tracking CPU/memory usage, disk space, log file growth, network activity, and system errors, with refresh intervals specified.
Linux watch command cheatsheet
Ever wish you could just run a command and keep seeing it update automatically as things change? That is exactly what the watch command does on Linux Here are useful examples of the watch command 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org
Learn Linux with Dan

Learn Linux with Dan

5 likes

This image displays a comprehensive list of useful Wireshark filter examples. It includes filters for IP addresses, ports, protocols like TCP, UDP, HTTP, DNS, TLS, DHCP, and packet properties such as length and content. The infographic was created by Dan Nanni from study-notes.org.
Useful Wireshark filter examples
Wireshark filters cut through the noise so you can focus on the traffic that matters: protocols, IPs, ports, or even packet contents. For blue teams, they help track suspicious activity and investigate forensic evidence. For red teams, they help map behavior, spot weak points, and test defenses
Learn Linux with Dan

Learn Linux with Dan

2 likes

An infographic titled 'Linux Filesystem Commands' by Dan Nanni, categorizing commands for managing filesystems. It lists common commands like mkfs and df, along with specific commands for EXT, ZFS, Btrfs, and XFS filesystems, detailing their functions for formatting, checking, resizing, and managing.
Useful Linux filesystem commands
Linux filesystem tools are divided into two types: those that work universally across all filesystems, and those designed for specific filesystems, taking advantage of their unique features and layout Here are useful Linux filesystem commands 😎👆 #devops #softwaredeveloper #TechTips #sof
Learn Linux with Dan

Learn Linux with Dan

7 likes

A Linux I/O Redirection cheat sheet created by Dan Nanni, detailing various shell commands for redirecting, appending, and combining standard input, output, and error streams. It includes examples like `cmd < file`, `cmd > file`, `cmd 2> file`, `cmd > file 2>&1`, and `cmd <<< "string"` with their corresponding descriptions.
Linux I/O redirection cheat sheet
Here is a concise reference of Linux shell operators for redirecting, appending, and combining standard input, output, and error streams 😎👇 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org #linux #sysadmin #infosec #devops #softwareengine
Learn Linux with Dan

Learn Linux with Dan

6 likes

An infographic titled 'Linux Filesystem Commands' lists common and filesystem-specific commands for EXT, ZFS, Btrfs, and XFS. Each command, like mkfs, df, e2fsck, zpool, btrfs, and xfs_repair, is accompanied by a brief description of its function, created by Dan Nanni.
Useful Linux filesystem commands
Linux filesystem tools fall into two categories: filesystem-independent commands that work across different filesystems, and filesystem-specific commands that are tailored for particular filesystems, utilizing their distinct features and structures Here are a list of useful Linux filesystem comm
Learn Linux with Dan

Learn Linux with Dan

5 likes

Useful third-party Python libraries
A key advantage of Python is its rich ecosystem of libraries. Beyond the powerful standard library, Python boasts a vast collection of third-party packages and frameworks that significantly boost productivity and simplify development across countless domains Here are useful and popular third-par
Learn Linux with Dan

Learn Linux with Dan

111 likes

A list titled 'Top Cybersecurity GitHub Projects' created by Dan Nanni at study-notes.org, updated 2025/9. It features various GitHub repositories with their star counts and brief descriptions, covering cybersecurity resources, hacking tools, reverse engineering, and pentesting.
Top cybersecurity-related GitHub projects
GitHub is home to many open-source cybersecurity projects, providing security professionals with a rich toolkit for research, defense, and response Here are a list of the most popular #github repositories related to cybersecurity 😎👆 #infosec #informationsecurity #pentest Find a high-
Learn Linux with Dan

Learn Linux with Dan

29 likes

User management commands for Linux
Even on a single-user Linux system, multiple accounts keep root actions separate, run services with least privilege, and let you test things without breaking your main environment. Here are essential Linux commands for user management 😎👆 Find high-res pdf ebooks with all my Linux related info
Learn Linux with Dan

Learn Linux with Dan

3 likes

An infographic titled 'Linux lsof Command Examples' by Dan Nanni, detailing various uses of the lsof command. It categorizes examples for listing open files, network connections and sockets, and other usages like Unix domain sockets and killing user activities.
Linux lsof command examples
My underrated Linux pick is the lsof command. It tells you exactly which files are open and which processes are using them. Because Linux treats everything as a file, this tiny command ends up being insanely powerful and useful in everyday troubleshooting. Here are useful lsof command examples 😎
Learn Linux with Dan

Learn Linux with Dan

2 likes

An infographic titled 'Linux netcat Command Examples' lists various `nc` commands for network tasks like port scanning, file transfer, creating shells, and streaming. It includes commands for TCP/UDP, IPv6, and persistent listeners, credited to Dan Nanni.
Useful netcat command examples
Netcat is the Swiss army knife of networking. It lets you read and write data over TCP or UDP, and infosec folks use it all the time for things like quick port scans, grabbing service banners, or setting up reverse shells. Here are useful netstat command examples 😎👆 Find high-res pdf ebooks w
Learn Linux with Dan

Learn Linux with Dan

6 likes

An infographic titled 'Linux Commands for Hardware Info' by Dan Nanni, listing various Linux commands and their functions for checking hardware components like CPU, memory, storage, network, display, and peripherals, along with system information.
Linux commands for hardware information
Here are useful Linux commands for looking up hardware information such as hardware vendor or model info 😎👆 #sysadmin #devops #opensource #TechTips Find high-res pdf books with all my #Linux related infographics at https://study-notes.org
Learn Linux with Dan

Learn Linux with Dan

2 likes

An infographic titled 'Ways to Remove Files on Linux' presents a comprehensive list of commands for deleting files and directories. It includes various `rm` commands for basic removal, `find` commands for conditional deletion based on criteria like age, size, user, or permissions, and other utilities like `unlink`, `shred`, and `trash-put`. The infographic is created by Dan Nanni from study-notes.org.
Different ways to remove files on Linux
There are various ways to remove files and directories on Linux, based on filenames, creation/access time, size, ownership, permissions, or security needs Here are useful command line examples of removing files on Linux 😎👆 #infosec #TechTips #software Find high-res pdf books with a
Learn Linux with Dan

Learn Linux with Dan

10 likes

Recover Deleted Files Using Terminal Commands
Accidentally wiped important files on Windows/macOS/Linux? This video shows how to use terminal and command-line recovery methods to restore deleted data before it gets permanently overwritten. #cmdanks #datarecovery #windows11 #linux #TechTips
XanthusTechCore

XanthusTechCore

5 likes

This image displays "Useful Linux Cron Examples," a comprehensive list of cron job schedules. It shows various cron expressions with corresponding commands and descriptions for tasks like running every minute, hourly, daily, weekly, monthly, yearly, at system startup, and more, created by Dan Nanni.
Useful Linux cron examples
Linux cron schedules recurring tasks at defined times using flexible expressions for minutes, hours, days, and months Here are useful cron job examples 😎👇 #software #softwaredeveloper #TechTips #technicalinterview Find a high-res pdf book with all my #linux related infographics fro
Learn Linux with Dan

Learn Linux with Dan

7 likes

This image displays a list of useful Linux shell aliases and functions created by Dan Nanni. It provides shortcuts for common command-line tasks like directory navigation, file management, system monitoring, process handling, network utilities, and system updates, aiming to boost productivity.
Useful Linux shell aliases and functions
Linux tip: Shell aliases or functions let you turn long or complex commands into short, memorable shortcuts — making your command-line workflow faster and cleaner Here are useful aliases and shell functions you can add to your shell configuration 😎👆 #devops #linux #productivityhacks #so
Learn Linux with Dan

Learn Linux with Dan

2 likes

A Linux Cheatsheet for Engineers from @thealpha.dev, listing various commands categorized into File System Operations, File Permissions, Process Management, Networking, System Information, Package Management, Shell Scripting, User and Group Management, File Transfer, and System Services. A penguin on a skateboard is at the bottom.
Linux cheat sheet✨️
Where are my tech babes at?👩🏿‍💻 This is something I'm learning in school😍 It's been super fun typing things into the command line and actually getting a response🥹💕💕💕 One of my classmates shared this cheat sheet to make using Linux easier #imdoingsomethingright #CybersecurityAwarenessMon
Deya!

Deya!

27 likes

Spicetify: Customize Spotify with this Tool!
Looking to spice up Spotify on your desktop check out Spicetify! Spicetify is a command-line tool that allows you to customize the official Spotify client. Search for and install themes, extensions, & snippets using the Spicetify Marketplace. I did noticed that some themes were a bit bu
doms.cozyspot

doms.cozyspot

613 likes

The image displays a list of Python libraries for penetration testing, detailing their functions. It includes tools for network packet manipulation (scapy), exploit development (pwntools), web traffic analysis (mitmproxy), and network scanning (nmap). Other libraries cover cryptography, system information, and domain reconnaissance. The graphic is created by Dan Nanni.
Useful Python libraries for pentesting
Python offers a rich set of libraries for penetration testing, enabling tasks like network scanning, exploit development, web vulnerability analysis, and payload generation Here are useful Python libraries for pentesters 😎👆 #infosec #pentest #pentesting #python Find high-res pdf book
Learn Linux with Dan

Learn Linux with Dan

39 likes

An infographic titled 'Linux Security Hardening' by Dan Nanni, listing essential commands for system upgrades, user and SSH security, firewall setup, file permission checks, service management, port monitoring, USB device control, legacy service checks, and security auditing tools.
Linux system hardening commands
Securing a system against threats requires reducing vulnerabilities, tightening access, and disabling unnecessary services. Here are useful Linux commands for that 😎👆 #linux #softwaredeveloper #TechTips #upskill Find high-res pdf books with all my #cybersecurity related infographics
Learn Linux with Dan

Learn Linux with Dan

10 likes

Linux command chaining
POSIX-compliant Linux shells (bash, zsh, sh) support command chaining — a simple way to link multiple commands and control whether the next one runs based on success, failure, or just order of execution 😎👆 Find a high-res pdf book with all my Linux related infographics from https://study-notes.o
Learn Linux with Dan

Learn Linux with Dan

6 likes

Philippians Notes✨✝️
I learned a lot studying this book and really enjoyed it. I hope that this helps you in your next Bible study!
Makenziee🤍🪩

Makenziee🤍🪩

17 likes

An infographic titled 'Defensive Security Browser Extensions' categorizes various browser extensions by function: Ad Blocking and Anti-Tracking, Password Management, Anti-Phishing & Malware Protection, Privacy Enhancement, and Script Blocking. It lists specific extensions under each category, created by Dan Nanni.
Useful browser extensions for defensive security
Browser extensions can quietly do a lot of security work while you browse: blocking malicious ads, managing passwords, limiting risky scripts, and warning you before phishing pages get a chance to bite 😎👆 Find high-res pdf ebooks with all my cybersecurity infographics at https://study-notes.org
Learn Linux with Dan

Learn Linux with Dan

2 likes

Linux netcat command examples
The netcat command lets you read from and write to network connections using TCP or UDP. Its flexibility makes it a must-have for infosec professionals, who use it for tasks such as port scanning, banner grabbing, and setting up reverse shells during penetration tests. Here are useful netstat co
Learn Linux with Dan

Learn Linux with Dan

10 likes

A hooded figure types on a keyboard, surrounded by holographic screens displaying global data and code, with the text overlay "How to become Cyber Security" highlighting the article's focus.
A detailed flowchart illustrates the career path to becoming a cybersecurity professional, from high school studies and university degrees to various certifications, entry-level IT jobs, and specialized cybersecurity roles.
This image outlines essential foundational skills for aspiring cybersecurity professionals, including mathematics (logic, statistics), computer basics (operating systems, hardware), and programming languages like Python, C/C++, and JavaScript.
#cybersecurity #studying #studytok #studywithme #BackToSchool
study with me 📚

study with me 📚

27 likes

An infographic titled 'Sysdig Command Examples' defines Sysdig as a Linux tracing tool and lists various commands for monitoring CPU, memory, network, file I/O, and capturing events. It's created by Dan Nanni.
Useful sysdig command examples
The sysdig command is a powerful system-level exploration and troubleshooting tool for Linux. Sysdig can capture and analyze real-time system calls and events, enabling deep visibility into processes, containers, network activity, and file access Here are useful sysdig command examples 😎👆 #te
Learn Linux with Dan

Learn Linux with Dan

26 likes

An infographic titled 'Network Troubleshooting on Linux' by Dan Nanni. It displays a table listing Linux commands categorized by OSI layer (Transport, Network, Data Link, Physical) and their corresponding troubleshooting plans. Commands like `ss -tunlp`, `ping`, `traceroute`, `tcpdump`, and `ethtool` are shown for diagnosing network issues.
Linux commands for network troubleshooting
When you run into a network issue on your Linux system, the key to solving it is narrowing down the root cause across the different layers of the OSI model. Since the problem could be anywhere, from the physical link to the application layer, you will need to rely on a variety of Linux tools, each
Learn Linux with Dan

Learn Linux with Dan

12 likes

Linux user management commands
Even on a single-user Linux system, having multiple user accounts is important for separating administrative tasks, securely running background services, and safely experimenting without affecting your main environment Here are essential Linux commands for user management 😎👆 #devops #softwar
Learn Linux with Dan

Learn Linux with Dan

5 likes

An infographic titled "DNS Security Measures" lists and describes eleven different DNS security measures. These include DNSSEC, DNS over HTTPS (DoH), DNS over TLS (DoT), DANE, Response Policy Zones (RPZ), DNS Filtering, QNAME Minimization, DNSCrypt, Anycast DNS, Rate Limiting, and Adaptive DNS Resolvers, each with a brief explanation and an icon.
Different types of DNS security measures
Securing DNS is vital as it underpins nearly all internet activity. Any compromise in DNS can lead to widespread service disruptions, data breaches, and malicious redirections affecting users and organizations globally Here are different types of DNS security measures that are available today 😎👇
Learn Linux with Dan

Learn Linux with Dan

7 likes

Command Prompt: Network Commands🛜
🌐 Command Prompt Commands Every IT Professional Should Know ✨ Part 2: Network Troubleshooting ✨ When a user says: 💬 “The internet isn’t working.” 💬 “I can’t connect.” 💬 “The website won’t load.” These are some of the first commands many technicians reach for. 📡 PING Tests basic conn
ITwDee

ITwDee

8 likes

An infographic titled 'Image Editing Software for Linux' categorizes various tools into types like Basic, Raster, HDR, CLI Batch, Vector Graphics, and Raw Processing, with examples for each. It features a penguin mascot and credits Dan Nanni from study-notes.org.
Image editor software for Linux
Linux isn’t just for developers — it’s a creative powerhouse too. From photo editing to vector design and digital painting, here are some of the best image editing tools you can use on Linux 😎👆 #photography #photoedit #photoeditinghack #software #photoeditideas Find high-res pdf books
Learn Linux with Dan

Learn Linux with Dan

6 likes

Linux lsof command examples
If I had to pick a personal favorite among lesser-known Linux commands, it would be lsof. It’s my go-to tool for discovering which files are open and which processes are using them. Since everything in Linux is treated as a file, lsof proves to be surprisingly powerful and endlessly useful Here
Learn Linux with Dan

Learn Linux with Dan

3 likes

An infographic titled 'Linux FUSE-based Filesystems' categorizes various filesystems. Categories include Remote and Cloud, Archive and Image, Encrypted and Secure, Legacy and Compatibility, and Special-Purpose and Experimental filesystems, with examples for each. The infographic was created by Dan Nanni from study-notes.org.
Useful Linux FUSE filesystems
A FUSE filesystem is a user-space filesystem built on top of the Filesystem in Userspace (FUSE) kernel module, allowing developers to implement custom storage logic without writing kernel code Here are a categorized list of Linux FUSE filesystems 😎👆 #softwareengineer #computerscience #TechT
Learn Linux with Dan

Learn Linux with Dan

4 likes

Linux command chaining
Linux shells like bash and zsh make it easy to combine commands using chaining, command substitution, and process substitution, letting you run tasks in sequence, reuse command output, or connect commands more flexibly 😎👆 Find a high-res pdf ebook with all my Linux related infographics from http
Learn Linux with Dan

Learn Linux with Dan

2 likes

An infographic titled 'Networking with Python' by Dan Nanni, listing numerous Python libraries categorized by networking functions. Categories include Socket APIs, DNS Tools, QUIC/HTTP3, Wireless Networking, File Transfer, Packet Tools, Security, HTTP Clients, Message Queues, Network Automation, Proxy Tools, Web Server, RPC Stacks, Serialization, Email Protocols, Service Discovery, Linux Networking, and SDN Control.
Useful Python libraries for networking
Python is useful for implementing networking applications thanks to its simple syntax, extensive libraries, and support for rapid prototyping and automation Here are useful Python modules and libraries for networking 😎👆 #python #pythonprogramming #pythonlearning #programming Find a h
Learn Linux with Dan

Learn Linux with Dan

9 likes

best networking commands to use
I use these networking commands to troubleshoot where my data and messages are going try these commands on a terminal windows Mac or Linux you might be surprised what you find follow share like and visit infotechmentor.com #informationtechnology #infotechmentor #techcareer #te
alt+control+start

alt+control+start

3 likes

CMD Prompt: Information Commands📜
🌐 Command Prompt Commands Every IT Professional Should Know ✨ Part 3: Network Information ✨ When you’re troubleshooting a network issue, one of the first things you need is information. That’s where these commands come in. 💙 📡 IPCONFIG Quickly displays your IP address and basic network i
ITwDee

ITwDee

13 likes

A ranked list of the top 20 Linux-related GitHub projects, including their repository names, star counts, fork counts, and brief descriptions. Projects range from the Linux kernel to command-line tools, editors, and system monitors. The infographic is credited to Dan Nanni and study-notes.org.
Top Linux-related GitHub projects
As a Linux fan, I’m always curious which open-source Linux projects are getting the most attention on GitHub Here are some of the big ones 😎👆 Did I miss anything important? Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org #linux #github #op
Learn Linux with Dan

Learn Linux with Dan

4 likes

A list titled 'Top Linux related GitHub Projects' ranks 15 projects, including torvalds/linux and ohmyzsh/ohmyzsh, showing their GitHub repository, star count, fork count, and a brief description for each. The image was created by Dan Nanni from study-notes.org.
Most popular Linux-related GitHub projects
As an avid Linux fan, I am always curious about the most popular open-source Linux projects hosted on GitHub. Here are some of the top ones! 😎👆 Think something important is missing? Let me know! #opensource #software #coding #github Find high-res pdf books with all my #linux relate
Learn Linux with Dan

Learn Linux with Dan

10 likes

An infographic titled 'Privacy-Focused Linux Distros' lists nine operating systems: Debian, Fedora, Kicksecure, Linux Kodachi, MOFO Linux, Parrot OS, Qubes OS, Tails OS, and Whonix, each with a brief description of its privacy and security features. It also credits Dan Nanni.
Privacy-focused Linux distributions
Privacy focused Linux distros minimize data collection and metadata leakage by default while prioritizing anonymity, isolation, and user control over networking, software behavior, and system telemetry. Here are some of the most popular Linux distros for privacy-conscious users 😎👆 Find high-r
Learn Linux with Dan

Learn Linux with Dan

9 likes

Best AI tools for coding
From AI-powered full IDEs, AI editors to autonomous agents, AI tools are transforming how we code. They can write, debug, refactor, and explain faster than ever. Here are different types of AI tools for coding 😎👆Are you using any? #coding #programming #ai #chatgpt Find high-res pd
Learn Linux with Dan

Learn Linux with Dan

10 likes

Linux terminal shortcuts
Level up your Linux skills! Terminal shortcuts make command-line work faster, from navigation to file management and quick command execution. Master them to work like a true power user Here is a summary of useful Linux terminal shortcuts 😎👆 #TechTips #softwaredeveloper #productivitytips
Learn Linux with Dan

Learn Linux with Dan

4 likes

An infographic titled 'Linux /proc Filesystem' by Dan Nanni, featuring the Linux penguin mascot. It lists numerous /proc entries like /proc/cpuinfo, /proc/meminfo, and /proc/[PID]/status, detailing the system information each provides, such as CPU, memory, and process statistics.
Linux /proc filesystem
The Linux /proc filesystem is a virtual interface that exposes live system information and kernel parameters, enabling users to monitor hardware and processes and adjust kernel settings at runtime Here are a list of useful /proc entries 😎👆 #software #softwaredeveloper #computer Find
Learn Linux with Dan

Learn Linux with Dan

5 likes

This infographic illustrates different types of ping methods, including ICMP, TCP, UDP, ARP, and HTTP. For each type, it shows the request and reply protocols, along with common Linux tools used for each ping method, such as ping, tcping, nping, arping, and httping.
Different types of ping
In networking, ping is known as a way to test network connectivity and measure RTT between devices. While ping probes typically use ICMP, alternative protocols like TCP or UDP can be used as well Here are different types of ping methods and supported #linux tools 😎👆 #software #TechTips #
Learn Linux with Dan

Learn Linux with Dan

14 likes

An infographic titled 'File Search Commands in Linux' by Dan Nanni, listing commands like find, locate, which, whereis, grep, fzf, fd, bfs, and ripgrep, each with a brief description of its file searching functionality.
File search commands for Linux
Linux gives you several ways to find what you need — from locating files and walking directory trees to matching text patterns, running regex searches, or using fast fuzzy search tools across the filesystem 😎👆 Find high-res pdf ebooks with all my Linux related infographics from https://study-not
Learn Linux with Dan

Learn Linux with Dan

2 likes

A circular infographic titled 'Browser Extensions for Pentesters' by Dan Nanni, categorizing numerous tools into five sections: Information Gathering, Exploitation and Payload Testing, Session & Cookie Management, Security Headers and Policies, and API and Data Analysis.
Useful browser extensions for pentesters
Pentesters sometimes rely on browser extensions for convenience and direct integration with web applications during testing. These tools allow seamless traffic manipulation, cookie analysis, and vulnerability scanning within the browser environment, saving time compared to external tools while prov
Learn Linux with Dan

Learn Linux with Dan

5 likes

An infographic titled "Open-source Privacy Tools" lists various software for digital privacy. Categories include Encrypted & Secure Storage, Private Browsing, Privacy-Focused Operating Systems, Password Management, Virtual Private Networks, Anonymous File Sharing, Secure Messaging, Metadata & Privacy Cleaning, and DNS Privacy, with examples for each.
Open-source privacy tools
How do you protect your privacy online? You start by locking down your data with encryption, using a password manager for strong logins, browsing with privacy-focused tools, chatting on secure messaging apps, running a reliable VPN to shield your connection, and clearing hidden metadata so nothing
Learn Linux with Dan

Learn Linux with Dan

122 likes

#Quick SED command cheat sheet for hackers & Linux users! ⚡ Clean logs, extract data, patch configs, anonymize info — fast and efficiently. 🔎💻 Master SED, level up your workflow. 🔒🔥 🔒 Disclaimer: This project is intended strictly for educational and ethical cybersecurity purposes. A
Luna Bright

Luna Bright

37 likes

An infographic titled 'Types of Network Monitoring on Linux' categorizes tools into Active Probing, App-level Session Monitoring, Aggregate Traffic Monitoring, and Packet Level Sniffing. Each category lists various command-line tools like ping, iperf, tcpdump, and nethogs for different monitoring purposes.
Different types of network monitoring on Linux
In Linux, there are many ways to monitor network traffic from command line. Some tools sniff individual network packets while others report aggregated traffic stats Here are a categorized list of network monitoring tools for Linux 😎👆 #devops #softwareengineer #technology #TechTips
Learn Linux with Dan

Learn Linux with Dan

5 likes

File search commands for Linux
Linux offers a mix of commands for locating files, searching directory trees, matching text patterns, and performing fast fuzzy or regex-based searches across the filesystem Here are different file search commands you can use on Linux 😎👆 #linux #softwaredeveloper #upskill #techjobs #
Learn Linux with Dan

Learn Linux with Dan

8 likes

See more