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 infographics at https://study-notes.org

2025/7/11 Edited to

... Read moreHey fellow Linux users! If you're anything like me, you know how crucial a good firewall is for keeping your system safe. When I first started diving into Linux security, iptables felt like a maze, but then I discovered UFW, the 'Uncomplicated Firewall'. It's been a game-changer for managing my host-based firewall on Debian-based Linux systems, making security genuinely accessible. Let's talk about some essential UFW commands that I use almost daily. One of the first things I always do is check the firewall status. Just typing sudo ufw status gives you a quick overview of what's active. But for a deeper dive, especially if you're trying to debug or just want to see everything that's going on, sudo ufw status verbose is your best friend. This command provides a detailed output, showing all active rules, their actions (allow, deny, limit), and the interfaces they apply to. It really helps with rule inspection! Sometimes, the verbose output can be a lot to sift through. That's where the numbered output comes in handy. You can get a numbered list of your rules by running sudo ufw status numbered. This is incredibly useful when you need to specifically delete a rule ufw has in place. Instead of typing out the entire rule specification, you can simply use sudo ufw delete [rule number]. For instance, if rule number 5 is DENY ALL from 192.168.1.100, you can just type sudo ufw delete 5 to remove it. It makes managing your firewall rules so much more efficient for removal! Speaking of adding rules, UFW makes addition (allow/deny/limit) super straightforward. Want to allow SSH? sudo ufw allow ssh. Need to deny a specific port? sudo ufw deny 8080. It’s intuitive and powerful. Another critical aspect of firewall management is logging. You absolutely want to know if someone's trying to poke holes in your defenses. To enable ufw logging on command, I use sudo ufw logging on. UFW offers different logging levels: low, medium, high, and full. Personally, I usually stick with low or medium for everyday use to avoid flooding my logs, but high or full can be invaluable during active troubleshooting or when you suspect an intrusion. Just remember to check your syslog files (/var/log/syslog or auth.log) regularly! And for those who prefer a visual approach, while UFW itself is command-line based, there's a Linux UFW GUI called Gufw available for many distributions. It provides a graphical interface to manage your UFW rules, which can be super helpful for beginners or if you just prefer clicking buttons over typing commands. I've used it on some desktop installs and it simplifies things greatly. Finally, don't forget about managing app profiles. UFW can simplify things by allowing you to enable/disable access for known applications. You can list available profiles with ufw app list and then sudo ufw allow 'App Name' to quickly open required ports for that application. Exploring these commands has truly boosted my confidence in securing my Linux systems. It’s all about finding what works best for you and consistently applying best practices. Happy securing!

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

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

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

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

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

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

Tha Smoke Websites

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

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

Useful AI Websites & Tutorials

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

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

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

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

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

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 flat lay shows a red book titled "People skills" surrounded by self-improvement items like candles, flowers, and a notebook. The scene is set for a "Study with me" session, emphasizing investing in oneself for a better future.
A page from a self-help book or notes provides advice on discerning people, including warnings about those who hurt you, borrow money, or are overly enthusiastic. It also features a "Wealth Formula" and a final takeaway on building real wealth.
A page from a self-help book or notes, titled "CHAPTER 1: DISCERNING PEOPLE," offers advice on fighting back when feelings are ignored, identifying ulterior motives in public praise, and decoding the meaning behind "we're not compatible."
Come Study with Me!
Studying people skills, boundaries, communication, and emotional intelligence one chapter at a time ✍🏽📚✨ Lowkey… this book has me taking NOTES notes 😭👀 Should I do a full “Study With Me: Chapter 2” video next? self improvement, people skills, emotional intelligence, feminine growth, mindset
ScoreRiseCreditSolutions

ScoreRiseCreditSolutions

12 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

695 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

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

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

DebianLinux

DebianLinux

4 likes

Linux command chaining
POSIX-compliant Linux shells (bash, zsh, sh) support command chaining — a simple way to link multiple commands and control whether the next one runs based on success, failure, or just order of execution 😎👆 Find a high-res pdf book with all my Linux related infographics from https://study-notes.o
Learn Linux with Dan

Learn Linux with Dan

6 likes

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

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

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

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

QUN MO

1 like

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

Kelly Having

6 likes

The image displays an infographic titled 'Open-Source Firewall OS', showcasing various options like pfSense CE, OPNsense, IPFire, and OpenWrt. Each entry includes the firewall's name, logo, and its base operating system, such as FreeBSD-based or Custom Linux. ClearOS is marked as discontinued. The infographic is credited to Dan Nanni study-notes.org.
Open-source firewall OS
A firewall OS turns dedicated hardware into a security gateway, giving you deeper control over network traffic, VPN access, intrusion detection, and custom security policies. Here are popular open-source firewall OS 😎👆 Find high-res pdf ebooks with all my Linux and cybersecurity related info
Learn Linux with Dan

Learn Linux with Dan

3 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

An infographic titled 'How SSH Reverse Tunnel Works' illustrates how an internal machine behind a NAT/firewall connects to a public relay server (VPS) to create a tunnel. An external client then connects to the relay server, which forwards the connection to the internal machine.
How SSH reverse tunneling works
An SSH reverse tunnel lets a remote server listen on a port and forward incoming connections through an SSH tunnel to a service running on another machine. It is commonly used to expose a service on a machine behind NAT or a firewall to the outside network 😎👆 Find high-res pdf ebooks with all my
Learn Linux with Dan

Learn Linux with Dan

3 likes

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

🧑‍💻🐧Linuxvr_Offical🐧🧑‍💻

1 like

An illustration featuring a laptop, smartphone, tablet, and printer on a desk, with a potted plant. The image has a teal background and white text that reads "CYBER SECURITY LIFE HACKS AND CHEATCODES."
A comprehensive list of various cybersecurity job roles and career paths, categorized by areas such as Security Code Auditor, Architecture, Networking, Audit, Cloud, Offensive, Operations, Compliance, Education, Privacy, Engineering, Sales, Generalist, Threat, and Governance.
An infographic titled "SECURITY TECHNOLOGIES" illustrating nine cybersecurity concepts: Firewall, IDS, IPS, XDR, EDR, Honeypot, SIEM, DLP, and VPN, each with a cartoon child and a brief description of its function.
This could help you in the long run in cyber
#unfiltered #lemon8challenge As someone who has been in tech for now 5 year and just recently started into cybersecurity 💻 here are some like codes and hack that can help you in school and to also break into tech like myself‼️ #cybersecurity #womenintech #blackwomenintech #Lemon8 #l
Affinity B

Affinity B

236 likes

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

Learn Linux with Dan

3 likes

Daytona Beach Shores, FL
edited in affinity, downscaled in GIMP on Linux Mint 22.3
tonykinflorida

tonykinflorida

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

DebianLinux

DebianLinux

2 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

DebianLinux

DebianLinux

87 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

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

HalluciNEET 9000

2 likes

DebianLinux

DebianLinux

7 likes

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

☬hyprland✇

6 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

See more