Linux security hardening commands

Locking down a Linux system comes down to shrinking the attack surface, tightening access, and cutting off anything unnecessary—here are the commands that help you do it 😎👆

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

#linux #cybersecurity #infosec #kalilinux #informationsecurity

4/8 Edited to

... Read moreIn my experience securing Linux systems, a layered approach is essential. Apart from running system updates with commands like `apt update && apt upgrade -y` (Debian), `dnf update -y` (RHEL), or `pacman -Syu` (Arch), it’s crucial to enforce strict access controls such as locking the root account login using `passwd -l root` and configuring SSH to disable root login and password authentication by editing `/etc/ssh/sshd_config`. Setting idle session timeouts with `echo "export TMOUT=600" | tee -a /etc/bash.bashrc` helps prevent unattended open sessions. While scanning for world-writable files and directories using `find / -type f -perm /o+w` and `find / -type d -perm -0002 ! -perm -1000`, I always audit these entries carefully since such permissions can be exploited by attackers. Similarly, auditing for files with SUID/SGID bits (`find / -type f -perm /6000 -ls`) helps detect potential privilege escalation points. Cleaning up unnecessary packages using `apt autoremove`, `dnf autoremove`, or `pacman -Rns $(pacman -Qdtq)` reduces the attack surface by minimizing installed software. Reviewing and disabling unused services via `systemctl list-unit-files --state=enabled` and closing insecure listening ports detected by `ss -tulpan` were significant steps in my hardening process. Implementing USB device policies with `usbguard` prevents unauthorized USB devices from connecting, enhancing physical security. For legacy services, removing or disabling insecure protocols such as telnet, rsh, and xinetd mitigates risks. Installing audit tools like `auditd` and running full security audits with `lynis` provide continuous monitoring and actionable recommendations to maintain system integrity. Overall, combining these commands with vigilant monitoring and regular updates creates a robust defense against common Linux security threats, delivering peace of mind for administrators and users alike.

Related posts

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

A young woman with long dark hair, wearing a pink satin shirt, smiles at the camera while sitting at a table. Overlay text reads: 'Tools and sites I use as a cybersecurity student to progress my skills and keep me interested in studying'.
A screenshot of 'The Hacker News' website, displaying various cybersecurity news articles from January 2025, including topics like vulnerabilities, malware, cyber espionage, and AI jailbreak methods. An ad for Zscaler and a banner for CIS Hardened Images are also visible.
A screenshot of the O'Reilly learning platform, showing various books and expert playlists related to AI, engineering, and data. Overlay text highlights the subscription cost ($50/month or $499/year) and its value for accessing books and live events.
Tools and sites I use as a cybersecurity student 🌸
#cybersecuritystudent #cybersecurity #techgirlie
LexiStudies

LexiStudies

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

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

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

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

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

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

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

Online learning resources for software developers
Want to pick up a new programming language or master a DevOps tool? No problem! Plenty of great learning resources are available online for free! 😎👆 #devops #coding #programming #softwaredeveloper
Learn Linux with Dan

Learn Linux with Dan

83 likes

A computer screen displays the Anki flashcard app with various Japanese language decks, including 'common anime words' and 'Japanese Essential Verbs'. The screen is on a desk with decorative items, and text overlay says 'you need this flashcard app for studying!'.
A close-up of the Anki app's deck interface shows options to download shared decks or create new ones. Text highlights that Anki is free for multiple platforms and allows syncing between devices.
A web browser shows the AnkiWeb Shared Decks page, displaying a vast library of user-created Japanese language flashcard decks available for import. Text emphasizes the 'huge library of shared decks'.
📚📑✏️ This is the best tool for studying!
If you are studying anything, especially languages, then you should be using flashcards! Anki is the best app out there for making and studying digital flashcards, and the best part is it’s FREE! Not only that, but you can also download other users’ flashcard decks for free or create your own based
astarael.games

astarael.games

57 likes

Defensive Linux security tools
Securing a Linux system requires a layered strategy that combines tools for threat detection, vulnerability assessment, real-time monitoring, and strict access control Here are different types of defensive security tools available on Linux 😎👆 #technology Find high-res pdf books with all my
Learn Linux with Dan

Learn Linux with Dan

28 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

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

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

#fyp #Lemon8 #tiktok #tech #codember
codember

codember

3 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

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

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

A Bible page with Psalm 145:13 featuring handwritten text "He heals the Broken Hearted & binds up their wounds" and a drawing of a bandaged heart with a cross. The page has colorful tabs on the left.
A Bible page with Hebrews 6:7-20 featuring a drawing of a ship, an anchor, and the word "HOPE," with "MY PROMISE!" written below. The page has colorful tabs on the left.
A Bible page with Genesis 1 showing numbered illustrations for the days of creation, including "Heavens & Earth," "Land & Sea," "Living Creatures," and "REST." The page has colorful tabs on the right.
Bible journal Art
I started back with some of my favs to do.
Mandie D

Mandie D

4 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

A table comparing wireless security protocols WEP, WPA, WPA2, and WPA3, detailing their acronyms, release years (1997-2018), security levels (rated with stars and emojis), session key lengths (40-bit to 192-bit), encryption methods (RC4, TKIP, AES-CCMP, AES-GCMP), integrity checks, and authentication mechanisms.
Wireless security protocol comparison
Wireless security standards are sets of protocols that safeguard data as it travels over Wi-Fi networks. They help ensure that your information stays private, unaltered, and accessible only to authorized users, protecting against eavesdropping and malicious attacks Here is a quick comparison of
Learn Linux with Dan

Learn Linux with Dan

8 likes

This chart outlines Offensive Linux Security Tools, categorized for various attack phases like reconnaissance, exploitation, password cracking, wireless attacks, and web application testing. It lists numerous tools such as Nmap, Metasploit, John the Ripper, Aircrack-ng, Burp Suite, and Ghidra, used for simulating real-world threats.
Offensive Linux security tools
This chart highlights Linux-based tools that red teams often use to simulate attacks and test defenses 😎👆 It is shared to help raise awareness of real-world threats and defensive techniques. Learn how they work, understand the risks, and always use them responsibly—unauthorized use is illegal an
Learn Linux with Dan

Learn Linux with Dan

28 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

9 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

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

🧑‍💻🐧Linuxvr_Offical🐧🧑‍💻

1 like

A laptop screen displays the Itch.io website, showing a list of horror games. The overlay text reads 'WHERE TO PLAY FREE HORROR GAMES'.
A laptop screen displays the Itch.io website, featuring a selection of horror games. The overlay text reads 'ITCH.IO'.
A laptop screen displays the Crazy Games website, showcasing various horror games. The overlay text reads 'CRAZY GAMES'.
WHERE TO PLAY FREE HORROR GAMES
Ever wondered where to play horror games for FREE. As a beginner YouTuber I didn’t want to pay (didn’t really have the funds to) for games. Lucky they’re a wild selection of platform that offer free horror games with a lot of them being made by small developers. What better way to support small dev
Endia 🎀

Endia 🎀

846 likes

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

☬hyprland✇

6 likes

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

Tha Smoke Websites

788 likes

An infographic announcing 'Dan Nanni's Study Notes Linux infographics & ebook version 1.79' update. It highlights four new topics: Linux Logging Facility Comparison, Anatomy of Linux Command Line, Linux Boot Time Security, and Built-in Bash Commands. Existing purchasers receive free updates. Visit study-notes.org for more.
New updates on my Linux infographic pack and ebook
In this update, I added four new topics: ✅ Linux logging facility comparison ✅ Anatomy of Linux command line ✅ Linux boot-time security ✅ Built-in Bash commands If you already bought my Linux infographic pack or ebook, these are exclusively available to you for free! Use the same downlo
Learn Linux with Dan

Learn Linux with Dan

1 like

An infographic titled "Linux Command Chaining" explains various command chaining methods. It covers sequential chaining, conditional execution for success (&&) and failure (||), combined success/failure conditions, pipelines (|), and redirection (>, >>), each with a command example. The graphic is created by Dan Nanni from study-notes.org.
Linux command chaining
POSIX-compliant Linux shells like bash, zsh and sh provide a feature called “command chaining”, which lets you connect multiple commands using specific operators to control their execution based on success, failure or sequence 😎👆 #software Find high-res pdf books with all my #linux infogra
Learn Linux with Dan

Learn Linux with Dan

3 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

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

Linux commands for log processing
Analyzing log files on Linux is crucial for maintaining security and system performance. It helps uncover unauthorized access attempts or breaches and also aids in troubleshooting problems that impact stability and efficiency Here are popular Linux commands for log processing 😎 #software #de
Learn Linux with Dan

Learn Linux with Dan

10 likes

A gaming setup with a monitor displaying the 'Minami Lane' title screen, showing options like 'CONTINUE' and 'MISSIONS'. Four glowing stars indicate a positive review, alongside a white keyboard and pink mouse on a desk. The screen features a cartoon raccoon character.
A handwritten journal entry details 'Minami Lane' as a 4.3-hour management sim by Doot + Blibloop, with 5 missions and a sandbox mode. It highlights the game's cozy art style and value for its $5 price, receiving a four-star rating.
The 'Minami Lane' missions screen shows five levels, with 'BOBALICIOUS' and 'YOUTH & ELDERLY' unlocked and completed. Overlaid text specifies platforms (macOS, Windows, Linux), genres (Indie, Casual, Simulation, Strategy, street builder), and the $4.99 price.
i would pay more to play more of this game! 💸
🦝 Minami Lane 🦝 Platforms: (Steam) macOS, Windows, Linux Genres: Indie, Casual, Simulation, Strategy Price: $4.99 My Rating: ⭐⭐⭐⭐ I loved this game so much! I only wish there were more than just five missions. But i appreciate that the devs also included a creative and sandbox mode. I think
astarael.games

astarael.games

32 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

Why I switched to taking notes on my iPad
I used to love writing in notebooks, but after switching to my iPad, I can confidently say I’m never going back! Here’s why: ✨ Cuter Notes – Let’s be real…aesthetic notes make studying more enjoyable! I can use custom colors, cute stickers, and different handwriting styles to make my notes visua
Rebecca R.

Rebecca R.

267 likes

A desktop screenshot, likely Zorin OS, shows a web browser open to Photopea (https://www.photopea.com/) with an interface titled 'Photopickle'. It presents options for 'New Project', 'Open From Computer', 'Templates', and a 'Drop any files here' zone. Supported file types like PSD, AI, PDF, JPG, and PNG are listed at the bottom.
Sorry for the hiatus due to taking a break.
Also, I recently switched to Linux called “Zorin OS”.
RepeatedKibbles

RepeatedKibbles

3 likes

A computer screen displays the Stardew Valley title screen, with neon text overlays reading 'how to mod Stardew Valley on pc! (with steam)' and 'so cute! :o aesthetic~'. The screen is part of a cozy gaming setup with various decorations.
A collage showing two steps for modding Stardew Valley. The top part shows a Steam 'PLAY' button with 'Step 1: Install and run Stardew via Steam; close it after it loads up'. The bottom part shows the NexusMods.com website with 'Step 2: go to nexusmods.com and create an account and/or login', highlighting the login/register buttons and a mod browsing page.
A screenshot of the SMAPI mod page on Nexus Mods, illustrating 'step 3: search for the mod 'SMAPI''. It highlights the 'FILES' tab, 'MANUAL DOWNLOAD' button, and the 'Slow Download' option for obtaining the mod.
Modding Stardew is pretty easy, i’ll show you!✨
Installing mods for Stardew may seem a little daunting, but it’s really not that bad! Let me walk you through it and let me know if you have any questions! (NOTE: this tutorial is for STEAM players only! You can follow the same steps pretty much on Mac or PC.) ✨Step 1: Install Stardew Valley thr
astarael.games

astarael.games

665 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 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 '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 titled 'Security Audits for Linux' by Dan Nanni, outlining key areas for auditing. It covers user management, malware monitoring, file system permissions, scheduled jobs, system configurations, logging, access enforcement, network security, software management, and human behavior.
Security auditing for Linux systems
Security audit for Linux involves a comprehensive review of system components to identify misconfigurations, vulnerabilities, and signs of compromise Here are an itemized list of security audits for Linux systems 😎👆 #linux #softwaredeveloper #TechTips #software Find high-res pdf boo
Learn Linux with Dan

Learn Linux with Dan

3 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

DebianLinux

DebianLinux

2 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

See more