Linux /proc filesystem

The /proc filesystem in Linux is a virtual gateway to real-time system info, from hardware stats to kernel parameters, letting you monitor and tweak your system on the fly

Here are some of the most useful /proc entries 😎👆 #TechTips #software #softwaredeveloper

Find high-res pdf books with all my #linux and #cybersecurity related infographics from https://study-notes.org

2025/10/10 Edited to

... Read moreThe Linux /proc filesystem is an invaluable tool for developers, sysadmins, and enthusiasts who want quick access to live system metrics without installing additional software. Each file or directory under /proc provides detailed insights into different system components. For example, /proc/cpuinfo offers comprehensive CPU details including model name, core count, and speed, which can help in performance analysis or troubleshooting hardware issues. Likewise, /proc/meminfo reveals memory usage stats including free memory, buffers, and cache, essential for understanding memory pressure and optimizing applications or services. More advanced entries like /proc/stat provide accumulated system stats such as CPU usage, interrupts, and context switches, which are useful for tracking system load trends. The /proc/loadavg file shows the average CPU and IO utilization over 1, 5, and 15 minute periods, helping users quickly assess system responsiveness. For those needing to debug kernel behavior, /proc/version and /proc/cmdline display kernel build info and parameters passed during boot, enabling in-depth kernel troubleshooting or customization. Network-related data is also richly exposed under /proc/net, including TCP connection states (/proc/net/tcp), interface-specific traffic stats (/proc/net/dev), and the IPv4 routing table (/proc/net/route). This is extremely valuable for diagnosing network issues or monitoring traffic flow. Furthermore, per-process directories like /proc/[PID]/status, /proc/[PID]/io, and /proc/[PID]/fd provide granular real-time information about individual processes’ states, IO statistics, and open file descriptors. Accessing these files allows detailed process monitoring and debugging without intrusive tools. Overall, mastering the /proc filesystem entries enables a deeper understanding of your Linux system’s internals and facilitates efficient monitoring, performance tuning, and troubleshooting. By regularly exploring these virtual files, you can gain insights that help proactively maintain system health. For those looking to expand their knowledge, resources such as high-resolution PDF books and infographics on Linux and cybersecurity at study-notes.org offer excellent supplemental learning materials.

Related posts

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

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

An infographic titled 'How Linux Pipe Works' compares anonymous and named pipes. It illustrates anonymous pipes as temporary, unidirectional data flow between parent-child processes, created by `pipe()` or `|` operator, with no filesystem entry. Named pipes are shown as persistent, unidirectional data flow between any two processes, created by `mkfifo()` or `mknod()`, visible as a special file.
How Linux pipes work
Linux has two simple ways for programs to pass data: one temporary and invisible, the other a file you can see and reuse. Here is a quick comparison between anonymous and named pipes 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org/linux-ebook.html
Learn Linux with Dan

Learn Linux with Dan

3 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

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

These sites saved my brain in 2025 🧠💻
1. ChatHub I used to bounce between AI platforms, copy-pasting the same prompt over and over to compare answers. With ChatHub, I can talk to multiple AIs at the same time, in one clean interface. It’s honestly my go-to whenever I’m brainstorming content, writing study scripts, or just curious whi
emilie.studygram

emilie.studygram

561 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

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

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

The image illustrates how Linux cgroups manage resources like CPU, Memory, Storage I/O, and Network. It shows creating cgroups, attaching a process (PID 12345) to `cgroup3` via `/sys/fs/cgroup/cgroup3/cgroup.procs`, and defining its resource limits (e.g., 512M memory.max, 10M/5M disk I/O).
How Linux cgroups work
On Linux, cgroups control and isolate CPU, memory, and I/O per process or container—this is what makes predictable container performance possible 😎👆 Find high-res pdf ebooks with all my Linux and DevOps related infographics from https://study-notes.org #linux #docker #kubernetes #de
Learn Linux with Dan

Learn Linux with Dan

2 likes

These 5 websites feel illegal to know!
#gettoknowme
Useful AI Websites & Tutorials

Useful AI Websites & Tutorials

38 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

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

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

Tha Smoke Websites

741 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

An infographic titled "Linux File Types" created by Dan Nanni, illustrating ten different file types. It defines Regular, Character Device, Directory, Block Device, Symbolic Link, Named Pipe (FIFO), Hard Link, /Proc, Socket, and /Sys files, explaining their functions and uses within the Linux operating system.
Different types of Linux files
In Linux, file types define how the kernel recognizes and interacts with files, influencing actions such as reading, writing, and executing them within the filesystem Here are a list of available file types on Linux 😎👆 #softwaredeveloper #TechTips #softwareengineering #software Find
Learn Linux with Dan

Learn Linux with Dan

6 likes

This image illustrates the Android Filesystem Structure, detailing various directories like /apex, /data, and /system, along with their specific functions. It shows how core OS files, installed apps, user data, and system components are organized. Created by Dan Nanni.
Android file system hierarchy
Android uses a Linux based file system organized into several main areas. /system stores the core OS files, /data holds installed apps and user data, and /storage provides access to internal and external storage where files like photos and downloads live 😎👆 Find high-res pdf ebooks with all my t
Learn Linux with Dan

Learn Linux with Dan

19 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

A laptop on a wooden desk with a large monitor in the background, displaying the title "Become an AWS DevOps Engineer" and "3 useful tips" for career advice.
A laptop and a scone with a drink on a wooden table in a cafe, illustrating the first tip: "Build a Strong Foundation in AWS Services" by learning core AWS services and DevOps tools.
A desk setup with a laptop, a colorful water bottle, and a phone, presenting the second tip: "Gain Expertise in DevOps Practices and Tools" like CI/CD pipelines and Infrastructure as Code.
How to become an AWS DevOps Engineer - 3 tips
1. Build a Strong Foundation in AWS Services As an AWS DevOps Engineer, you’ll be responsible for designing, deploying, and managing scalable cloud infrastructure. Key Steps: Learn Core AWS Services: Start with foundational services like EC2, S3, IAM, RDS, VPC, and CloudFormation. Master De
vedha | career tips (tech) 👩‍

vedha | career tips (tech) 👩‍

6 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

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

The image explains how Linux cgroups work, illustrating resource control for CPU, Memory, Storage I/O, and Network. It shows how to create cgroups and attach a process (PID 12345) to cgroup3, detailing its defined resource limits for memory and disk I/O, along with current usage.
How Linux cgroups work
Linux cgroups let you control and isolate how much CPU, memory, and I/O each process or container can use — the foundation of modern container performance management Here is how Linux cgroups work 😎👆 #cybersecurity #devops #softwareengineer #linux #TechTips Find high-res pdf bo
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

This infographic presents a 'Roadmap to Learning Linux' by Dan Nanni, categorizing skills into Beginner, Intermediate, and Advanced levels. It lists essential topics like file management, system information, networking, service management, kernel configuration, system performance, and security, along with relevant commands and tools for each stage.
Roadmap to learning Linux
Linux powers everything from servers and cloud platforms to supercomputers and embedded devices. Learning Linux builds practical skills that can help in system administration, cybersecurity, cloud computing, networking, and DevOps. Here is a roadmap for learning Linux, from beginner to advanced
Learn Linux with Dan

Learn Linux with Dan

2 likes

A desk setup with a monitor displaying a project plan, a laptop, keyboard, and a plant, illustrating the topic of 'Excel alternatives best in 2025'.
A screenshot of Zoho Sheet displaying a spreadsheet with country population data, highlighting it as a free Excel alternative with advanced features for seamless collaboration.
A screenshot of Smartsheet's campaign planning interface, demonstrating its project management features, templates, and views for tracking progress and collaboration.
Excel alternatives best in 2025
Looking for a fresh spin on spreadsheets? These tools bring fresh alternatives to Excel and Google Sheets, offering powerful features, real-time collaboration, and user-friendly designs. Whether you’re a data enthusiast, team player, or productivity seeker, there’s something here for everyone. S
Reverelia

Reverelia

49 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

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

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

So you want to “learn Linux”?
Here are the harsh truths nobody tells you… 🐧 Most Linux roles aren’t entry level. The CLI is mandatory. Certs don’t matter without skill. If that scared you… good. Because Linux isn’t for the weak. Still want to continue? #linux #cybersecurity #computerscience
Professor Linux

Professor Linux

1 like

Cave Dwellers Built the First Data Center
When your ancestors were running Linux before fire was invented. Stone age server farms hit different. #midjourney #cavecore #techno #ancient #cyberpunk
HalluciNEET 9000

HalluciNEET 9000

2 likes

An infographic details the Linux /etc/shadow file, showing its structure with fields like username, password hash, last change, min/max days, warn, inactive, expire, and reserved. It defines each column and provides examples for user 'dan' and 'sshd' accounts, explaining their password security settings.
Linux /etc/shadow file overview
On Linux, /etc/passwd stores basic user account information and was historically used for password storage. But, for security reasons, hashed passwords have been moved to /etc/shadow, which is only accessible by root Here is how to interpret the /etc/shadow file 😎👆 Find high-res pdf books wit
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

DebianLinux

DebianLinux

4 likes

Crown CarPlay effect
Crown CarPlay effect #appel car play #carplay #toyota #linux #androidauto
QUN MO

QUN MO

1 like

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

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 explaining the Linux /etc/shadow file, detailing its purpose for storing hashed passwords and account security. It breaks down the file's column structure (username, password, last-change, min, max, warn, inactive, expire, reserved) and provides examples with interpretations for user 'dan' and 'sshd' accounts.
Linux /etc/shadow overview
On Linux, /etc/passwd keeps basic user account details. Password hashes used to live there too, but for security, they were moved to /etc/shadow, which is readable only by root. Here is how to interpret the /etc/shadow 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https:
Learn Linux with Dan

Learn Linux with Dan

1 like

Student Teaching Series: What to bring to student teaching!! Please let me know if you guys have ANY questions and I will do my best to make videos over the next couple weeks for you. I’m an open book and would LOVE to pass on anything I’ve learned. ☺️ #teachersoftiktok #middleschoolteacher
Kelly Having

Kelly Having

6 likes

An infographic titled 'Dotfile Managers for Linux' created by Dan Nanni at study-notes.org. It displays icons and names for eleven popular dotfile managers: Chezmoi, Dotbot, Dotdrop, Dotfiles, Dotter, Home Manager, Homesick, Mackup, GNU Stow, vcsh, and Yadm.
Dotfile managers for Linux
Dotfiles are hidden configuration files in Unix-like systems, usually stored in your home directory, that control how the shell, editors, window managers, and many command-line tools behave. Here are popular dotfile managers for Linux, tools that help you track, sync, and version your configura
Learn Linux with Dan

Learn Linux with Dan

5 likes

I’m Linuxvr!
#gettoknowme #gorillatag #fyp #newcontentcreator #linux
🧑‍💻🐧Linuxvr_Offical🐧🧑‍💻

🧑‍💻🐧Linuxvr_Offical🐧🧑‍💻

1 like

Ça c'est les pieds d'un français 🇫🇷 #lemon8 #lemon8fr #tiktok #tiktokfr
pierrebg2004

pierrebg2004

4 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

An infographic titled 'Understanding Linux Signals' illustrates signal sources like kernel-detected faults, system calls, and kernel subsystems. It shows how processes handle signals through default actions, custom handlers, or ignoring them. A table details common signals, their numbers, default actions, and triggering conditions.
Understanding Linux signals
“Signals” provide a lightweight mechanism for the Linux kernel and other processes to asynchronously notify a running process about events such as faults, user interrupts, or system conditions 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org #linu
Learn Linux with Dan

Learn Linux with Dan

8 likes

An infographic explaining Linux special file permissions: SUID, SGID, and the Sticky bit. It illustrates their positions in permission strings (rwsrwsrwt), defines their functions, and provides examples like /bin/passwd for SUID, /usr/bin/crontab for SGID, and /tmp for the Sticky bit. Created by Dan Nanni.
Special file permissions on Linux
Linux uses special permissions like SUID, SGID, and the Sticky Bit for advanced access control. SUID and SGID change how execution rights are applied, while the Sticky Bit controls who can delete files in shared directories Learn about these special permissions in more details 😎👆 #technology
Learn Linux with Dan

Learn Linux with Dan

5 likes

linux distro linux ricing :)
Linux Ricing #linux #computer
☬hyprland✇

☬hyprland✇

6 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 '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

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

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

Yazi: a terminal-based Linux file manager
Yazi is a blazingly fast terminal file manager written in Rust, based on non-blocking async I/O. It aims to provide an efficient, user-friendly, and customizable file management experience within Linux terminals. A strong contender for the best TUI-based file manager title 😎👆 Find high-res pdf
Learn Linux with Dan

Learn Linux with Dan

3 likes

Linux-based cybersecurity tools
Linux provides a vast ecosystem of open-source cybersecurity tools, offering solutions for penetration testing, threat detection, and secure system management Here is a categorized list of cybersecurity tools available on Linux 😎👇 #cybersecurity #infosec #linux
Learn Linux with Dan

Learn Linux with Dan

13 likes

🛑 Stop paying for Photoshop or struggling with Canva limitations… 🎯 GIMP is the free design software I teach all my students to use—and it works like a charm for custom products. 👩🏽‍💻 In this quick tutorial, I’ll show you exactly how to download it, set it up, and pin it to your desktop so you’r
www.DesigningMadeEasy.com

www.DesigningMadeEasy.com

14 likes

Linux /etc/shadow file overview
Linux keeps your account details in /etc/passwd, but the real passwords live in /etc/shadow. Modern systems hide the hashes there so only root can touch them — keeping your logins safer Here is how to interpret the /etc/shadow file 😎👆 Find high-res pdf books with all my infographics at https:
Learn Linux with Dan

Learn Linux with Dan

3 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

An infographic comparing hard and soft links on Linux filesystems. Hard links are references to the same inode within the same filesystem, while soft links are special files storing pathnames that can cross filesystem boundaries and become dangling if the target is removed. Visuals illustrate their respective connections to inodes.
Hard link vs. soft link on Linux filesystem
Understanding the difference between hard and soft links in a Linux filesystem is key to efficient file management and system organization. Here is a quick comparison between hard and soft links on #Linux 😎👇 #devops #TechTips #software #technology Find high-res pdf books with al
Learn Linux with Dan

Learn Linux with Dan

4 likes

See more