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 #TechTips #technology

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

2025/6/7 Edited to

... Read moreHey everyone! If you're anything like me, you've probably scoured the internet for clear, practical examples of nmcli commands. This little tool is a powerhouse for managing your Linux network, from simple status checks to configuring complex connections. I used to feel overwhelmed, but after getting hands-on, I realized how straightforward it can be! Let me share some of my go-to commands that have saved me countless times, covering everything from viewing network configuration to full WiFi setup. 1. Checking Your Network's Pulse: nmcli device status First things first, you need to know what's going on. The nmcli device status command is your best friend for a quick overview. It lists all your network interfaces – Ethernet, Wi-Fi, loopback – and their current state. I always start here if I'm troubleshooting connectivity issues or just want a quick glance at my managing network devices. For more detailed information, nmcli device show can provide deeper insights into a specific device. nmcli device status 2. Bringing Devices Online: nmcli device connect Sometimes a network interface just needs a gentle nudge to get going. If you see a device listed as 'disconnected' or 'unavailable' in nmcli device status, you can often bring it up with nmcli device connect. For instance, to activate your Ethernet port (often eth0 or enpXsY): nmcli device connect eth0 This is super handy for quickly getting a specific network device back online. 3. Adding New Connections: Wired (Ethernet) Setting up a new wired connection is painless with nmcli connection add. Let's say you want to create a static IP connection for your Ethernet port. This command (a form of nmcli connection add example) allows you to define all the parameters precisely. I prefer this method for servers where consistent IP addresses are critical, as it allows full IP configuration. nmcli connection add type ethernet con-name "MyWiredConnection" ifname eth0 ip4 192.168.1.100/24 gw4 192.168.1.1 nmcli connection modify "MyWiredConnection" ipv4.dns "8.8.8.8 8.8.4.4" nmcli connection up "MyWiredConnection" 4. Conquering Wireless: nmcli WiFi Setup WiFi can be tricky, but nmcli makes managing WiFi networks much more manageable. From scanning for available networks to connecting, it covers all bases for WiFi setup. Scanning for networks: nmcli device wifi list Connecting to an existing network: Once you find your network (let's say its SSID is "Your_SSID"), connecting is simple. This is your nmcli device connect for WiFi: nmcli device wifi connect "Your_SSID" password "Your_WiFi_Password" Adding a persistent WiFi connection profile: For connections you use regularly, it's best to save them. This is another nmcli connection add command example, specifically for WiFi: nmcli connection add type wifi con-name "HomeWiFi" ifname wlan0 ssid "MyHomeNetwork" -- wifi-sec.key-mgmt wpa-psk wifi-sec.psk "YourPassword" nmcli connection up "HomeWiFi" 5. Graceful Exits: nmcli disconnect Sometimes you need to temporarily disable a connection without removing its profile. The nmcli connection down command is perfect for this. For example, to disconnect your 'HomeWiFi' connection profile: nmcli connection down "HomeWiFi" Or if you want to disconnect a specific device (like wlan0): nmcli device disconnect wlan0 6. Viewing Current Configurations: nmcli connection show To see all your saved connection profiles, both active and inactive, nmcli connection show is invaluable. It helps you keep track of everything you've set up and is part of viewing network configuration, ensuring your device control is always informed. nmcli connection show I hope these practical nmcli command examples help demystify network management on Linux for you. Remember, practice makes perfect! Dive in, experiment (carefully!), and you'll be a network pro in no time. Happy networking!

Related posts

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

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

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

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

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

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

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

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

Learn Linux with Dan

26 likes

An infographic titled '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

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

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

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

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

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

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

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

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

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

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

The Biblical principles behind Faith
I hope that those notes help someone get closer to God! #knowingbible #zoombiblestudys #faith #biblestudy
Jack H

Jack H

28 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

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

Useful AI Websites & Tutorials

38 likes

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

doms.cozyspot

615 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

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

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

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

#news #breakingnews #usa #viral #foryoupage
Lemon8er

Lemon8er

3 likes

Wrong ...
If you make decisions for a living, your memory is your unfair advantage. I went from forgetting everything → remembering anything on command. This clip is just a small piece of how it works. I put together a full system for people who actually want to level up. Link in bio. #invest
CaseyPorterMemory

CaseyPorterMemory

0 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

An overhead view of a desk with a laptop, drinks, and a hydration stick, featuring the title 'TEN skills to include on your resume in 2025'.
A desk setup with a laptop and keyboard, displaying the first five resume skills: Communication, Time management, Digital tools, Problem Solving, and Adaptability.
A desk setup with a laptop and various drinks, showing the remaining five resume skills: Data literacy, Writing skills, Leadership, Organization, and Emotional intelligence.
10 Must-Have Skills for Your Resume (+ Examples) ✨
Your resume is your ticket to landing the job, so let’s make it shine! 💼 These 10 skills are what recruiters are looking for in 2025—here’s how to showcase them: 1️⃣ Communication 💬 Example: “Led weekly team meetings, facilitating collaboration and clear communication across departments.” 2️
Alex | Career & Confidence

Alex | Career & Confidence

146 likes

1 girl w 10 academic obsessions🫶✨
#studytok #studytips #studywithme #studyhack #studytools
studywithnaomi

studywithnaomi

101 likes

Linux I/O redirection
On Linux, I/O redirection allows you to control where a command reads input from or sends output to, such as files, devices, or other programs, by manipulating standard input, output, and error streams Here are useful I/O redirection examples 😎👇 #softwaredeveloper #softwareengineering #cyb
Learn Linux with Dan

Learn Linux with Dan

5 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

A laptop displaying the GitMind website and a tablet showing a document are on a wooden desk in a study area, with overlay text 'AI study tools for a 4.0 GPA'.
A laptop on a wooden desk displays the GitMind website, a collaborative mind mapping software. Overlay text describes GitMind as a tool for making connections and generating mind maps.
A laptop on a wooden desk displays the Mindgrasp website, an AI learning assistant. Overlay text highlights Mindgrasp's ability to summarize documents, create flashcards, notes, and practice questions.
ai study tools for a 4.0 GPA 💯🎧✨
ai study tools for a 4.0 GPA 💯🎧✨ more ai study tools :) i’ve used all of these at least a couple of times this semester and wanted to share! - gitmid: for my girlies who like mind maps, this is for you! i love making mind maps for classes that are conceptual, really helps me retain all the ne
lia 💗

lia 💗

519 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

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

🧑‍💻🐧Linuxvr_Offical🐧🧑‍💻

1 like

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

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

Learn Linux with Dan

10 likes

An infographic titled 'Linux 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

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

Learn Linux with Dan

4 likes

An infographic titled '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

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

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

Learn Linux with Dan

2 likes

A MacBook Air displays a nursing study guide on hypertensive crisis, preeclampsia, and gestational hypertension, with definitions and key characteristics. The laptop is on a dark surface.
Printed nursing study guides on medication interactions and pharmacology, including sulfadiazine, are spread on a wooden desk next to a white tumbler, a pink highlighter, white earbuds, and a small tube of cream.
A MacBook Air shows an online nursing school dashboard with course progress and due dates, alongside an iced drink. The background features a bar area with bottles and glasses.
nursing school study guides✨
#nursingstudent #nursingstudenttips #nursingstudents #nursingcollege #embracevulnerability
celi

celi

217 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

See more