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 Linux pv command examples 😎👆 #TechTips #softwaredeveloper #softwareengineer #software

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

2025/7/13 Edited to

... Read moreBefore I stumbled upon the pv command, I honestly spent too much time just waiting, wondering if my large file operations on Linux were actually doing anything. You know the feeling – running a dd command for a disk backup or tar for a big archive, and just seeing a blinking cursor for ages? It was frustrating! But discovering pv was a total game-changer for visualizing progress. It's like having a real-time monitor for almost any command that processes data through a pipe. One of the first ways I found pv incredibly useful was for monitoring file copying. While cp doesn't directly pipe, you can easily combine pv with cat to get that sweet progress bar. For instance, if I'm moving a large ISO file, I'd use something like cat large_file.iso | pv > /mnt/backup/large_file.iso. Suddenly, I could see not just the data transferred, but also the speed and an estimated time of arrival. No more guesswork! It's equally fantastic for compression and decompression tasks. When I'm archiving a directory with tar and gzip, instead of just tar -czf archive.tar.gz my_dir, I pipe it through pv: tar -cf - my_dir | pv -s $(du -sb my_dir | awk '{print $1}') | gzip > archive.tar.gz. The -s option with pv is crucial here because it tells pv the total size to expect, giving a more accurate ETA. Similarly, for decompressing: pv archive.tar.gz | tar -xz. Seeing the progress bar fill up makes these long operations so much less stressful. And let's talk about disk partition backups and restores with dd. This is where pv truly shines. Running dd if=/dev/sda | pv | dd of=/backup/sda.img lets me see the exact progress of my disk image creation. For restoring, it's just as simple. This has saved me so much anxiety during critical system backups. Beyond just monitoring, pv has a clever trick: limiting transfer speeds. There are times when I don't want a file transfer to hog all my network bandwidth or disk I/O. With pv -L, I can set a limit. For example, cat large_file | pv -L 1m > destination_file will limit the transfer to 1 megabyte per second. This is incredibly handy when I'm doing something else resource-intensive on my system. Even for SCP transfers, while it's a bit more involved, pv can provide progress. You can pipe the ssh output through pv on the source side or use it to monitor the incoming data on the destination. It's a bit advanced but definitely a powerful capability for serious admins. In essence, pv transforms opaque system operations into transparent, manageable tasks. The ability to visualize exactly what's happening, see the transfer speed, and get an ETA has made my Linux experience so much smoother. If you're managing files, backups, or any data streams on Linux, spending a few minutes to learn pv will pay dividends in peace of mind and efficiency.

Related posts

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

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

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

Linux nmcli command examples
nmcli is a CLI tool that talks to NetworkManager—lets you create and manage connections, check status, and run basic network diagnostics right from the terminal Here are useful nmcli command examples 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org
Learn Linux with Dan

Learn Linux with Dan

3 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

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

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

Keep Viewers Engaged(for FREE)
People shouldn’t only have the option to interact with the stream if they PAY for it. Here is how to reward your viewers for their TIME with FREE interactions! 🫐 PIXELPLUSH.DEV ✨ A website with fun interactive overlays and activities for your chat! ✨ Free and paid options! ✨ My chat is obs
BLU 🫐🏳️‍🌈

BLU 🫐🏳️‍🌈

1832 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

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

Learn Linux with Dan

2 likes

An infographic titled 'Linux pv Command Examples' presents various `pv` commands for visualizing data transfer progress. Examples include monitoring file copying, merging, compression, decompression, SCP transfers, disk backups, and tarball operations, demonstrating how `pv` shows progress, speed, and ETA during file operations.
Useful pv command examples
pv (Pipe Viewer) is one of those hidden gems on Linux. Just toss it into a pipe (pipes are already super convenient) and you get a live view of progress, speed, and ETA as data flows through 😎👆 Find high-res pdf ebooks with all my Linux related infographics at https://study-notes.org #linux
Learn Linux with Dan

Learn Linux with Dan

3 likes

A student's desk with a laptop displaying a probability assignment, a spiral notebook with handwritten notes, and two energy drink cans. The image is titled 'HOW I TAKE NOTES IN COLLEGE'.
A blank page of a spiral notebook with 'Section # here' written in red at the top, illustrating the first step of note-taking.
A spiral notebook page showing 'Section # here' and the second step of note-taking, which involves writing and highlighting terms and their definitions.
How 4.0 Students Take Notes 📝❤️
Steal my notes! 🫧💋🪩 This is the technique I use to take my notes in classes. I just perfected my format and find this to be the most functional. I take these notes in class and it isn’t time consuming or hard! I find this method to work best for me because the terms and examples stick out th
lizzie matthias

lizzie matthias

3113 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

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

An infographic titled 'Linux Tuned Command Essentials' explains the tuned service for optimizing performance or power. It lists essential `tuned-adm` command examples like `list`, `active`, `recommend`, `profile`, and `off`. A table details various tuning profiles such as balanced, powersave, and throughput-performance, along with their descriptions.
Linux tuned command examples
The tuned command is a system tuning tool available in Linux. It dynamically optimizes performance or power consumption by applying predefined or custom tuning profiles Here are basic tuned command examples and built-in tuned profiles you can readily use 😎👆 #software #computer #software
Learn Linux with Dan

Learn Linux with Dan

9 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

An infographic titled 'Linux nmcli Command Examples' detailing commands for viewing network configuration, managing network devices, managing WiFi networks, and managing other connection types like Ethernet. It includes commands for status, connection, device control, WiFi setup, and IP configuration.
Linux nmcli command examples
nmcli is a Linux command-line utility that interacts with NetworkManager, enabling users to create, modify, and manage network connections, check connection status, and perform basic network diagnostics directly from the terminal Here are useful nmcli command examples 😎👆 #software #devops #T
Learn Linux with Dan

Learn Linux with Dan

4 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

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

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

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

A laptop displays the "Marketing Examples" website, showcasing various marketing case studies like influencer ads, upsells, and viral content strategies. The image is overlaid with the title "Learning Websites to Level Up Your Skills."
The Codecademy website is shown, featuring career paths like Front-End Engineer and Data Scientist, alongside popular courses such as Learn Python 3, HTML, and JavaScript. It highlights a user-friendly approach to coding lessons.
The DataCamp website is displayed, promoting learning data skills from non-coding essentials to data science and machine learning. It illustrates a learning methodology of assessing, learning, applying, and practicing to develop data skills.
Learning Websites to Level Up Your Skills
They make the learning journey feel less like a lecture and more like a chat with a knowledgeable friend. Codecademy – my coding guru! 🤓✨ Forget the boring textbooks; this platform brings the coding game to life with a user-friendly vibe and hands-on lessons. Learning Python, Java, or HTML? They
Reverelia

Reverelia

1434 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

A comprehensive DeepSeek Complete Cheatsheet by Jafar Najafov, outlining roles, tasks, restrictions, and specific prompts for business owners, developers, marketers, and designers, along with prompt priming and the C.R.E.A.T.E. formula.
A list of roles from a DeepSeek AI cheatsheet, including Lawyer, Ghostwriter, Website Designer, Best Selling Author, Chief Financial Officer, Expert Copywriter, Prompt Engineer, Accountant, Project Manager, Sports Coach, Financial Analyst, and Full Stack Developer.
A list of roles from a DeepSeek AI cheatsheet, including Analyst, Teacher, Marketer, Advertiser, Mindset Coach, Therapist, Journalist, and Inventor, under the heading 'Act as a [ROLE]'.
🚀 DeepSeek Complete Cheatsheet
Hey everyone! 🌟 I’ve put together a comprehensive cheatsheet based on the DeepSeek Complete guide by Jafar Najafov.This is perfect for anyone looking to leverage AI prompts effectively. Let’s dive in! 🧭 ---- Act as a [ROLE] Need to switch roles? Here’s a list of personas you can adopt: 1. Anal
Valder

Valder

75 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

Why I prefer studying alone
Do not get me wrong, I still participate in study groups sometimes, but I have found that I really do better by myself, so I have tried to prioritize that more! Here is a bit more detail about my reasoning: ★ Productivity: I have noticed I am much more productive when I study alone. I am just su
Sarah :)

Sarah :)

46 likes

A notebook page titled "2ND DAY OF CNA CLASS" with highlighted key terms for Long Term Care, including definitions for Activity Director, ADLs, Acute, Administrator, Adult Day Care, Advanced Practice Nurse, Assisted Living, Call Light, and Chronic.
A notebook page continuing CNA class notes, defining key terms such as Certified Nursing Assistant (CNA), Chain of Command, HIPAA, Hospice Care, Interdisciplinary Team, Licensed Practical Nurse (LPN), and Long Term Care (LTC).
A notebook page with CNA class notes, defining terms like Non-Verbal Communication, Objective Observation, Ombudsman, Palliative Care, Person-Centered Care, Physical Therapist (PT), Policy, Procedure, and Professionalism, with examples of professional behavior.
2nd day of CNA notes
for my cna girls here my notes💕 #fyp #cna #nursingstudent #notes #cnalife
Nurse Samuel M 🩺 💉

Nurse Samuel M 🩺 💉

123 likes

A binder with a light blue cover sheet titled "MEDICAL TERMINOLOGY CHAPTER THREE NOTES" and "Chapter Three Suffixes 3.1-3.8". Pens, highlighters, and a laptop are visible in the background, with a "SWIPE" arrow at the bottom right.
Handwritten notes on lined paper titled "CHAPTER Three - Suffixes LO 3.1 - Suffixes". The notes explain how suffixes are used in medical terms, their function, and how they describe sensations, conditions, procedures, and pathologies, with examples.
Handwritten notes on lined paper showing "Suffix examples". Three examples are provided: "Dermatitis" (inflammation of the skin) with an image of feet, "Gastralgia" (stomach pain) with an image of a person holding their stomach, and "Hepatomegaly" (enlarged liver).
Medical Terminology 🏥 - CHAPTER THREE
#medicalschool #medicalstudent #medstudent #notes #aesthetic
Lynn🪬

Lynn🪬

122 likes

A hand holds apartment keys with a heart keychain, in front of an unfurnished apartment. Text overlays read 'First Apartment Check List home sweet home'.
A checklist titled 'Apartment CHECKLIST' details 20 kitchen essentials, including plates, silverware, cook/bakeware, appliances like air fryer and Keurig, and cleaning supplies.
An apartment checklist outlines dining room essentials like a table and decor, and living room essentials such as a couch, lamps, TV, and various decorative items.
First Apartment Check List
This is my first post here on Lemon8! I’m going to be on here documenting my life upon entering adult hood. I’m going to be moving into my own place sook with my bf and made a check list of things we’ll be needing (and wanting🤭) I took some examples off other lists i’ve seen and added some thing of
liahnoelle

liahnoelle

12.5K likes

Physics tips from a physics PhD student
Here are my best tips for physics!! I hear people say all the time how physics is impossible but I think a lot of that is not studying properly. Focusing on examples is key. Of course do the examples done in class of homework’s but then finding similar problems to practice with is key!! Be
Sarah :)

Sarah :)

44 likes

This image displays a table titled 'Deprecated Linux Command Usage' by Dan Nanni. It compares various deprecated Linux commands like ifconfig, netstat, fdisk, route, and arp with their modern, up-to-date alternatives such as ip and ss, providing a description for each command's function.
Deprecated Linux command examples
Just like anything else, even widely used Linux tools can become outdated as better and more efficient options emerge. Once deprecated, these tools typically stop receiving new features or security updates, even if they’re still accessible. While it can be tough to move on from familiar habits,
Learn Linux with Dan

Learn Linux with Dan

8 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

An open Bible lies on a surface, with the title 'BIBLE JOURNALING' overlaid in white text. The pages show highlighted verses from Psalms 145, 146, 147, and 148, indicating a focus on scripture study and creative expression.
An open Bible page displays Proverbs 4:5 with highlighted text reading 'She is more precious than rubies: and all things thou canst desire are not to be compared to her.' A drawn orange diamond and pink hearts adorn the page.
An open Bible page shows Psalm 118:26 and Psalm 118 with highlighted text 'The Lord I will not fail' and two pink hearts. The page also features a yellow highlight on 'Praise the Lord, all ye nations'.
BIBLE JOURNALING ✨
Here’s some examples for bible journaling!!! I really gotta get back into this!! #journalbible #biblejournalwithme #biblejournalideas #journalingbible #biblejournalingideas
Jenna 🪩💋🐆

Jenna 🪩💋🐆

25 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

College Resume Tips and Examples 📝💻✍🏼🎓
Creating a college resume is essential for applying to colleges, internships, scholarships, and jobs. A strong resume highlights your achievements,skills, and experiences in a clear and organized manner. Here’s a step-by-step guide on how to write an effective college resume: ✍🏼 Start with a Str
Joy 📚

Joy 📚

479 likes

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

Useful AI Websites & Tutorials

38 likes

An infographic titled "Git Command Essentials" categorizes various Git commands. It covers basic operations, configuration, staging and committing changes, viewing changes, managing branches, managing remote repositories, undoing changes, and miscellaneous commands like merge, rebase, and tag. The infographic is created by Dan Nanni from study-notes.org.
Git command examples
Git is crucial for version control, enabling teams to collaborate, track changes, and manage code reliably in software development projects Here are useful git command examples! 😎👇 #coding #programming #softwaredeveloper #github Find high-res pdf books with all my DevOps related inf
Learn Linux with Dan

Learn Linux with Dan

5 likes

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

Learn Linux with Dan

2 likes

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

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 'OpenSSH Command Examples' by Dan Nanni, listing twelve practical OpenSSH commands for secure remote logins, file transfers, and command execution, including custom port connections, key authentication, preventing timeouts, running remote commands, port forwarding, jump servers, copying public keys, custom config files, SOCKS proxies, and connection multiplexing.
OpenSSH command examples
OpenSSH is a versatile suite of client and server tools that use the SSH protocol to provide encrypted and authenticated communication over networks. This toolset is heavily used for secure remote logins, file transfers, and command execution in various cloud and on-premises environments Here ar
Learn Linux with Dan

Learn Linux with Dan

6 likes

A hand holds a Starbucks cup next to a laptop displaying the Pinterest home feed, with text overlay "Stop Using Pinterest Use these 3 apps Instead!" and a finger icon pointing to the keyboard.
A hand holds a Starbucks cup next to a laptop showing the Walling app interface, with text overlay "1. Walling Transforms scattered ideas into organized visual masterpieces."
A green mug sits next to a laptop displaying the mymind app interface, with text overlay "2. mymind Ideal for turning fleeting ideas into creative collections."
3 Pinterest Alternatives for beautiful moodboards!
Wave goodbye to the same old and welcome the new wave of productivity with these 3 stellar apps! 🌊📲 ➡Walling - Beyond just organizing ideas, Walling offers a "Daily Desk" feature, allowing you to gather daily thoughts and to-dos in a focused space, streamlining your daily workflow. ➡
Ayesha 🍋

Ayesha 🍋

1899 likes

A young woman sitting on a couch, holding a tablet and waving, with the text overlay "HOW TO USE LINKEDIN TO ATTRACT RECRUITERS," introducing the article's topic.
A close-up of a laptop screen displaying the LinkedIn interface, featuring the search bar and a profile picture of a smiling woman, illustrating the platform discussed.
A close-up of a laptop keyboard and screen, showing a document or spreadsheet, with a patterned curtain in the background, representing online work or profile management.
How to find a job WITHOUT APPLYING 📝
I know I said I rarely use LinkedIn to network… but I may just have to get back on it. My friend was reached out to by a LinkedIn recruiter despite not even STARTING to apply for jobs yet. The offer is for 30% above what she was getting at her last company, and it’s for a MANAGER position. Here
Jane 🦧

Jane 🦧

24 likes

Two laptops, an iPad, and a tablet are arranged on a wooden table, displaying study materials on social media marketing. Two iced coffee cups are also on the table, illustrating a study session with a buddy.
An iPad with a pink-edged case displays handwritten notes on economics, covering concepts like scarcity, macroeconomics, and microeconomics. A drink with a pink straw and a pink lip product are beside it on a decorative table.
A laptop and a tablet are on a desk with shelves holding various personal items and a decorative lamp. The tablet shows a handwritten list, while the laptop displays a collage of images, suggesting a study schedule setup.
study inspo for college students!
Study inspo for college students! It's A new semester which means it’s time to change up our study habits! I'm a major procrastinator and I'm desperately trying to break that habit. So here's a few of my favorite study tips to help you this semester! 1) study with a buddy -now i
maddie schultz

maddie schultz

434 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

TOP 3 YOUTUBE CHANNELS FOR BIOLOGY 🧪
💻I always enjoy sharing free resources so here are some of my favorite YouTube channels I used throughout college as a biology major! Each one of these channels has short and long form videos but are depth to the fullest. 💻If you are a visual person like me you’ll definitely like Dr. Matt and D
Havana

Havana

91 likes

An infographic titled 'Linux socat Command Examples' presents 14 practical `socat` commands for various networking tasks, including TCP, UDP, SSL/TLS, UNIX sockets, and file operations. It was created by Dan Nanni from study-notes.org.
Linux socat command examples
Ever heard of socat? It’s one of those Linux tools that quietly does everything. You can use it to pipe data between almost any two things: TCP, UDP, SSL/TLS, UNIX sockets, files, even serial ports. Pentesters love it for reverse shells, port forwarding, and quick network tests. Here are useful
Learn Linux with Dan

Learn Linux with Dan

5 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

An infographic titled 'Linux ufw Firewall Command' details ufw, a user-friendly frontend for iptables. It categorizes commands for rule inspection, addition (allow/deny/limit), removal, and managing app profiles. Examples include 'ufw status', 'ufw deny ssh', and 'ufw reset', with creator Dan Nanni and study-notes.org credited.
Linux ufw firewall command examples
Ufw (“Uncomplicated Firewall”) is the user-friendly frontend for iptables, which is commonly used as a host-based firewall on Debian-based Linux Here are useful ufw command examples 😎👆 #cybersecurity #TechTips #infosec #upskill Find high-res pdf books with all my #linux related in
Learn Linux with Dan

Learn Linux with Dan

2 likes

Linux socat command examples
The socat command is an extremely versatile Linux utility for bidirectional data transfer between two endpoints. It supports many protocols like TCP, UDP, TLS, and interfaces like UNIX sockets, files, pipes, and serial ports. Socat is commonly used by pentesters for tasks like creating reverse shel
Learn Linux with Dan

Learn Linux with Dan

2 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

Linux grep command examples
The grep command — my all-time favorite in Linux — is like a spotlight for text. It instantly finds words, phrases, or patterns inside files or streams with precision and speed Here is a quick grep cheatsheet to power up your searches 😎👆 #softwareengineer #TechTips #linux Find high-res
Learn Linux with Dan

Learn Linux with Dan

2 likes

John 13:31-35 | The New Command 📖
Today’s Bible reading & notes 📖 John 13:31-35 | The New Command 📖 ♥️ Today’s Heart Check: Do I love others the way Jesus has loved me, or do I only love when it is easy, safe, or returned? #i love reading my bible #findgod📖🙏🏻 #readingthroughmybible #biblenotes #biblestudy
MAE ♡

MAE ♡

35 likes

See more