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 from https://study-notes.org/linux-ebook.html

2025/8/30 Edited to

... Read moreHey everyone! If you're like me, you probably want to automate those repetitive tasks on your Linux machine. Learning about cron jobs was a game-changer for my workflow. It felt a bit intimidating at first, but once I got the hang of it, I realized how powerful and simple it is! I'm excited to share a comprehensive list of common crontab examples that I've found incredibly useful for various scheduling needs. So, what exactly is cron? It's a time-based job scheduler in Unix-like operating systems. Crontab (short for 'cron table') is the file where you schedule these commands. Think of it as your personal assistant who runs tasks exactly when you tell them to, without you lifting a finger! This crontab list will walk you through the expressions and commands to get started. The basic crontab syntax might look like a secret code at first, but it's super logical once you break it down. Each line in your crontab file has five time fields, followed by the command you want to run: minute (0-59) hour (0-23) day_of_month (1-31) month (1-12) day_of_week (0-7, 0 or 7 is Sunday) command_to_execute To make scheduling even more flexible, cron uses a few special characters: *: Any value (e.g., * in the minute field means 'every minute'). ,: List (e.g., 1,15,30 in the minute field means 'at minutes 1, 15, and 30'). -: Range (e.g., 9-17 in the hour field means 'from 9 AM to 5 PM'). /: Step (e.g., */5 in the minute field means 'every 5 minutes'). Now, let's dive into some practical cron expressions with corresponding commands and descriptions for common tasks: Run a task every minute: * * * * * /path/to/your_script.sh *My personal use*: This is great for quick checks, like monitoring a log file or a service's uptime every minute. Run a task every 5 minutes: */5 * * * * /path/to/another_script.sh Run a task hourly: 0 * * * * /path/to/hourly_backup.sh You can also use the special string @hourly. *I often use @hourly for tasks like rotating logs or making small incremental backups.* Run a task daily at a specific time (e.g., 3:00 AM): 0 3 * * * /path/to/daily_report.sh Alternatively, use @daily. *This is perfect for those daily reports or database cleanups you don't want to do manually.* Run a task weekly (e.g., every Monday at 1:00 AM): 0 1 * * 1 /path/to/weekly_maintenance.sh Or use @weekly. *My weekly system updates and security scans usually run with this setting.* Run a task monthly (e.g., on the 1st of every month at midnight): 0 0 1 * * /path/to/monthly_cleanup.sh Or use @monthly. *I schedule my monthly data archives or billing reports with this one.* Run a task yearly (e.g., on January 1st at midnight): 0 0 1 1 * /path/to/yearly_archive.sh Or use @yearly (or @annually). *This is handy for annual data consolidation or fiscal year-end reports.* Run a task at system startup: @reboot /path/to/start_service.sh *This is a lifesaver for making sure certain services or scripts start automatically after a server reboot, ensuring everything is up and running without manual intervention.* A pro-tip I learned the hard way: Always handle your script's output! Otherwise, cron might email you for every single output, or your logs will be messy. You can redirect output to a log file or null: * * * * * /path/to/script.sh >> /var/log/my_cron.log 2>&1 (Appends output to a log file) * * * * * /path/to/script.sh > /dev/null 2>&1 (Discards all output) To get started, just type crontab -e in your terminal. This opens your personal crontab file for editing. And crontab -l will list your current cron jobs. Remember to save and exit the editor, and your new cron job will be active immediately! Hopefully, this crontab list of examples gives you a solid starting point for automating your Linux tasks. It’s incredibly satisfying to set something up once and know it’ll just run in the background. Happy scheduling!

Related posts

✨📓Supplies You SHOULD Have!! (NOT JUST PENCILS)🏫✨
✨ Let’s talk essentials, not trends. These are the timeless, always-reliable school supplies every student should keep in their bag, on their desk, or stashed in their dorm drawer aside from the oldie but Goldie pencils and sticky notes (equally as important, but we already know that!). Because run
Margarita

Margarita

7453 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

Tips for Scoring High on Essays 📚✍️
I’d like to share some insights that helped me achieve great scores on every paper from my freshman year to graduate school. These tips are based on my writing techniques and daily observations: I hope these tips help you elevate your essay writing skills! Stay tuned for more insights on structu
KnoweeAI

KnoweeAI

109 likes

Useful awk command examples
Awk is a powerhouse text tool — it can scan files or streams, match patterns, and run custom actions on the fly, making it perfect for quick data filtering, parsing, and one-line automation Here are useful awk command examples 😎👇 Find high-res pdf books with all my Linux infographics at https
Learn Linux with Dan

Learn Linux with Dan

4 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

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

A woman in purple leggings and a grey sports bra is in a plank position, showcasing her glutes in a gym setting. Overlay text reads "BIG GLUTES +FLAT TUMMY -DEBLOAT- -NUTRITION- -WORKOUTS-" and her username.
This image explains how the StairMaster targets glutes and abs. It details how step climbing and hip extension work the glutes, and how core stability and engagement through movement strengthen the abs, with a woman on a StairMaster.
A 10-minute intense StairMaster warm-up or cooldown routine is outlined, with specific levels and durations. It notes this is not a full workout and suggests using it before or after a main session.
Ultimate Abs & Butt Workout 4 Flat Stomach & BIG🍑s
Dreaming of a small waist and a big, round butt? Trust, you're not alone and I wanna help make that happen for you! Achieving a trim waist and a peachy bum not only boosts confidence but is very much do able! The benefits of strong abs and glutes go far beyond aesthetics. 🍋Toned abs n
Chalie_Baker

Chalie_Baker

1646 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 laptop screen displays the 'News in Slow Spanish for Beginners' podcast interface, showing 'Lesson 2 - Ser & Estar' and an 'About' section detailing the course structure with dialogues, stories, and quizzes.
A laptop screen shows a list of 'Spanish for Beginners' podcast episodes, including lessons on syntax, past participles, and irregular verbs, with the overlaid text 'perfect pace for those just starting to learn!'.
A laptop screen displays the 'Spanish for Beginners: Lesson 2 - Ser & Estar' podcast episode description, explaining how to decipher the verbs of being, with the overlaid text 'scenarios in Spanish and English'.
Perfect Spanish podcast for beginners
I love this podcast so much!! It’s great for you if you are looking to learn Spanish in a natural, easy way. Each episode covers useful words, phrases, and grammar with clear explanations and real-life examples (both English and Spanish). It’s great for beginners because you get to hear Spanish in
Anaïs D’Ottavio

Anaïs D’Ottavio

1375 likes

Useful notes for Nurse 🩺🫀🫶🏻
#nurse #medicalstudent #school #notes #nursing
Sandra Vasquez

Sandra Vasquez

145 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

A black background image titled "Linux scp Command Examples" lists various scp commands with their functions, including copying files/directories, using custom SSH ports, compression, private keys, rate-limiting, and jump servers. It also features a small circular image with "Created by Dan Nanni study-notes.org".
Scp command examples
The scp command lets you securely copy files between hosts over an SSH connection. Some of you might think scp is deprecated but in fact what’s deprecated is the scp protocol, not the command itself. The command now uses a more secure sftp protocol by default Here are some of useful scp com
Learn Linux with Dan

Learn Linux with Dan

7 likes

✨Busy Girl Guide: Toning Upper-Body✨🚫No Bulking⏳💪🔥
If your goal is to develop a toned and defined upper body without adding excessive bulk, you’re in the right place. Here’s my guide that combines targeted workouts with insights into muscle engagement, diet, and overall fitness strategies to help you achieve a lean and sculpted upper body as a
Chalie_Baker

Chalie_Baker

101 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

697 likes

A hand holds a pencil, writing in a notebook, with a laptop in the background. The image is titled "simple but useful writing tips" and indicates to "SWIPE FOR MORE," serving as the cover for an article on writing proficiency.
This slide provides writing tips: avoid 'This/These/It' by being specific, and avoid 'due' by using more descriptive language. Examples show how to rephrase sentences like 'Your rent is due' to 'The rent payment is required by the end of the month.'
This slide offers writing advice: avoid 'based on' and instead use 'on the basis of' for clarity and formality, with an example provided. It also states that sentences should begin and end with words, not symbols, numerals, abbreviations, or acronyms.
Simple but useful tips to write better ✍🏻
📝 Learning to write proficiently is important for effective communication and academic success. Proficient writing enables individuals to convey their thoughts, ideas, and arguments clearly and persuasively. It is a valuable skill in various professional fields, where concise and articulate wri
teal.days

teal.days

131 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 scenic sunset over a tropical coastline with palm trees, featuring the text 'Steal My Microbiology Notes SWIPE' and 'Lemon8 @mayajanaeee'.
Microbiology notes on the background of microbiology, including an introduction to microorganisms, historical knowledge, and the birth of microbiology with a drawing of van Leeuwenhoek's microscope.
Microbiology notes on taxonomy and types of microorganisms, featuring a scanning electron micrograph of S. Aureus bacteria and a logarithmic scale chart comparing relative sizes of microbes.
Steal My Microbiology Notes
Only 2 more classes next until I start core! Microbiology & Nutrition. These are NOT all my micro notes, I will be uploading more and finishing highlighting what’s important. Stay tuned babes! And as always, I hope this helps! :) #nursingschool #nursingstudent #notes #notetaking
Maya Fosdick

Maya Fosdick

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

Useful Websites You Might Find Helpful Someday
Little lesser-known websites that could prove helpful for various needs in your everyday online activities. I hope you find these valuable. ⟣ Remove Vocals With this tool, you can make karaoke tracks easily. It removes vocals from any song (in wav or mp3 format) that has both instruments and
Reverelia

Reverelia

1292 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

This image displays a comprehensive list of Tcpdump command examples for network traffic analysis on Linux. It covers various functionalities like capturing, filtering by interface, protocol, IP, port, and subnet, saving to files, displaying detailed packet information, and advanced filtering using TCP flags and VLANs.
Tcpdump command examples
Tcpdump is a powerful command-line tool for capturing and analyzing network traffic on Linux. This tool is essential for cybersecurity pros and sysadmins to troubleshoot issues, inspect protocols, and detect suspicious activity Here are useful tcpdump command examples 😎👆 #technology #softwar
Learn Linux with Dan

Learn Linux with Dan

7 likes

5 WAYS GOD SPEAKS💕✝️…
Hey everyone! I thought i’d share with you ways God speaks to me. I used to struggle with understanding the way He speaks and only thought He spoke through an audible voice. Come to find out God being the amazing wonderus Creator He is, He speaks in MANY ways. This is to encourage somebody! If
Hannah Rose

Hannah Rose

2062 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

The image displays the title "Quick Notes For Psych Students" in blue and yellow text, overlaid on a background of psychology textbooks and colorful stationery.
This image defines psychology as the scientific study of the mind and behavior, listing thoughts, emotions, motivations, and social interactions as aspects it examines, set against a subtle brain graphic.
The image defines behavior modification as a psychological technique to change human behavior, featuring a T-chart comparing rewards (positive reinforcement) and consequences (punishment) with examples.
✨STEAL MY BEHAVIOR MOD/CONDITIONING NOTES 🧠✨
🎓✨ Calling all psychology students! 🧠 Struggling to keep up with all the techniques and terms? Here are a few notes on behavior modification + fun and effective study hacks to help you ace your exams! From cheat sheets to quick memorization tips, I’ve got you covered. 💡 Swipe through for: • E
Margarita

Margarita

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

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

Useful AI Websites & Tutorials

38 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

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 comprehensive guide titled 'HOW TO USE AI TO LEARN 10X FASTER,' detailing AI use cases, ChatGPT prompts, specialized GPTs, AI tools, and Chrome extensions for enhanced learning efficiency.
A list of practical AI use cases for learning, including transcribing YouTube videos, creating podcasts from notes, summarizing study materials, and learning from podcasts, X threads, and LinkedIn carousels.
A section titled 'ChatGPT Prompts' offering specific prompts for learning, such as explaining topics to beginners, creating learning plans, comparing concepts, and summarizing key points of materials.
🚀 How to Use AI to Learn 10x Faster
Hey everyone! Today I want to share with you an amazing resource on how to use AI to supercharge your learning. Whether you're a student, a professional, or just someone looking to expand your knowledge, these tips and tools can help you learn faster and more effectively. Let's dive in! 🌟
Valder

Valder

1904 likes

An infographic titled 'Linux cp Command Examples' presents a comprehensive list of `cp` command variations and their uses, including copying files, directories, preserving attributes, handling symbolic links, and using `find` and `rsync` for advanced copying tasks. The content is created by Dan Nanni.
Linux cp command examples
Many of you probably learned the cp command early on in Linux, but if you haven’t explored its full set of options and are too lazy to read its man page, you might be missing out on its true power Let’s review some useful examples of the command 😎👆 #softwareengineer #softwaredeveloper #sof
Learn Linux with Dan

Learn Linux with Dan

8 likes

An infographic titled 'Linux ip Command Examples' provides a quick reference for various `ip` subcommands. It details commands for managing IP addresses (`ip addr`), network interfaces (`ip link`), network routes (`ip route`), ARP neighbors (`ip neigh`), and tunnels (`ip tunnel`), including IPv6 options.
Linux ip command examples
The ip command in Linux is a powerful tool used to configure and manage network interfaces, routing tables, and network policies. It serves as a modern replacement for older commands such as ifconfig and route Here are useful ip command examples 😎👆 #technology #networking #cybersecurity
Learn Linux with Dan

Learn Linux with Dan

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

The image displays a planner and a tablet on a dark grey fabric, with the title "6 Free ONLINE STUDY Resources For STUDENTS" overlaid, introducing online study tools.
A yellow plush toy with a smiley face rests on a dark grey fabric, accompanying text about LifeHack offering online resources for students of all ages to enhance learning.
A hand holds an Essentia water bottle on a dark grey fabric, with text explaining OpenStax provides free, peer-reviewed online textbooks for K-12 students across various subjects.
6 Free Online Study Resources For Students ✨️
Hi, lemons! Whether you’re rocking the high school vibes or acing college life, let’s talk about some free online resources that’ll light up your learning journey. 🚀 In this post, you can explore my curated list of free online resources that cater to various learning needs. From interactive cou
Lifestyle Babe

Lifestyle Babe

685 likes

Linux awk command examples
The awk command is a versatile tool for processing text, enabling users to scan files or streams, match patterns, and perform custom actions on the matched data Here are useful examples of the awk command 😎👇 #sysadmin #opensource #devops Find high-res pdf books with all my #Linux
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

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

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

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

Study Sessions & Time Spent
Start building good habits now, before it’s too late! ⏰ 💕✨🌸 #studyinghabits #get good grades #studytok
💕its ija 429✨

💕its ija 429✨

79 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 journalctl command examples
The journalctl command lets you view and manage logs collected by systemd’s centralized logging system across the whole machine Here are useful journalctl command examples 😎👇 #sysadmin #technology #software Find high-res pdf books with all my #Linux related infographics at https://st
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

An infographic titled "Linux strace Command Examples" defines strace as a Linux diagnostic tool. It lists various strace commands for tracing system calls, logging output, attaching to processes, filtering by syscalls, monitoring child processes, displaying timestamps, and generating syscall summaries. It is created by Dan Nanni.
Linux strace command examples
strace is a Linux diagnostic tool that traces system calls and signals made by a process to help debug and analyze its interaction with the kernel Here are useful strace command examples 😎👇 #cybersecurity #infosec #software #technology Find a high-res pdf book with all my #linux re
Learn Linux with Dan

Learn Linux with Dan

4 likes

An infographic titled "Linux pv Command Examples" illustrates various uses of the `pv` command. It shows how to monitor file copying, merging, compression, decompression, SCP transfers, disk partition backups/restores, limit transfer speeds, and manage tarball creation/extraction with progress visualization.
Linux pv command examples
The pv command is a handy but lesser-known tool that lets you monitor the progress of data through a pipe, displaying transfer speed, ETA, and total size. It’s often used with commands like tar, dd, or gzip to track the progress of file transfers, backups, or compression tasks Here are useful Li
Learn Linux with Dan

Learn Linux with Dan

3 likes

Basic IT Knowledge: Operating Systems💻
🖥️ BASIC IT KNOWLEDGE: OPERATING SYSTEMS 🖥️ Your computer, phone, or tablet wouldn’t be very useful without an operating system. But what exactly does an operating system do? 🤔 Think of it as the manager behind the scenes. When you open an app, save a file, connect to Wi-Fi, or click a
ITwDee

ITwDee

1 like

A scenic view of a city along a river with buildings, bridges, and mountains under a clear blue sky. The foreground features a bridge railing covered in numerous love locks. The image introduces the topic with the text 'FRENCH word of the DAY'.
A light brown graphic displaying the French phrase 'pas mal' with its phonetic pronunciation '[pah-mahl]' and English translation 'not bad'. An example sentence in French and English illustrates its usage: 'the concert was not bad, but I preferred the last one'.
A light brown graphic titled 'EXAMPLES' showing a dialogue in French and English. It demonstrates the use of 'Pas mal' in a conversation about a movie: 'A: How was the movie? B: Not bad, but a bit long'.
useful french phrase to know!
"Pas mal" is a casual way to say something is "not bad" without sounding too excited or too negative. It’s great for giving neutral opinions like about food, movies, or experiences, etc. It can also mean "quite a lot" in some cases, like "Il y avait pas mal de monde"
Anaïs D’Ottavio

Anaïs D’Ottavio

43 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

How to Turn Screen Time Into Paychecks💸💸💸
How to Turn Screen Time Into Paychecks 1️⃣ Stop Consuming—Start Creating Scrolling is free. Creating is paid. You don’t need to go viral—you need to be useful. 👉 Share what you know 👉 Document what you’re learning 👉 Teach one thing per post ⸻ 2️⃣ Pick ONE Monetizable Skill Scre
POSH🌸

POSH🌸

2 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

See more