System & Network Admin

System & Network Admin

5 Faster Ways to Copy Large or Millions of Files in Linux
5 Faster Ways to Copy Large or Millions of Files in Linux
In this guide, we'll explain why cp falls short, how to copy files faster with rsync, pv, and parallel tools, and how to track copy progress in Linux.
·tecmint.com·
5 Faster Ways to Copy Large or Millions of Files in Linux
netstat vs ss — Vivian Voss
netstat vs ss — Vivian Voss
The Unix Way Episode 16. The Unix text interface lives in the tool, not in a file. FreeBSD netstat has been in base since 4.2BSD shipped TCP/IP in August 1983; it asks the kernel through sysctl pcblist and formats the answer. Linux net-tools netstat reads /proc/net/tcp, a kernel-rendered ASCII dump that is readable but not askable; on sixty thousand sockets the pretence becomes expensive. Alexey Kuznetsov restored the Unix pattern with ss by adding NETLINK_INET_DIAG in Linux 2.6.14 (October 2005), generalised to NETLINK_SOCK_DIAG in 3.3 (March 2012). McIlroy's text-streams principle puts the interface in the tool's mouth: one asks netstat, netstat speaks. A file shaped like text is not the same thing.
·vivianvoss.net·
netstat vs ss — Vivian Voss
Broadcasting GPS On The Local Network To Help Geoclue Find You
Broadcasting GPS On The Local Network To Help Geoclue Find You
Rather than having users go through the inconvenience of having to punch in their current location, an increasing number of applications and websites use location services that can pin-point the cu…
·hackaday.com·
Broadcasting GPS On The Local Network To Help Geoclue Find You
Introduction to Meshtastic
Introduction to Meshtastic
Adafruit Feather RP2040 with RFM95 LoRa Radio – 915MHz – RadioFruit and STEMMA QT   Looking to get into LoRa mesh communication? Meshtastic.org has a thorough introduction a…
·blog.adafruit.com·
Introduction to Meshtastic
How To Better Enjoy VR On Linux
How To Better Enjoy VR On Linux
Linux folks are used to having to roll many of their own solutions, and better Linux desktop usability is a goal of the WayVR project, which aims to provide desktop control and app launching from w…
·hackaday.com·
How To Better Enjoy VR On Linux
What Is a Standard Container: Diving Into the OCI Runtime Spec | iximiuz Labs
What Is a Standard Container: Diving Into the OCI Runtime Spec | iximiuz Labs
Are all containers just Linux processes? How does the OCI runtime specification define a container? What platforms do OCI containers support? What is a Docker container? Linux containers vs. Virtual Machine containers.
·labs.iximiuz.com·
What Is a Standard Container: Diving Into the OCI Runtime Spec | iximiuz Labs
Agent Deck
Agent Deck
A terminal dashboard for running multiple AI coding agents in parallel
·agent-deck.devopstoolkit.ai·
Agent Deck
Timestamp Format Cheatsheet: Quick Reference Guide
Timestamp Format Cheatsheet: Quick Reference Guide
Complete reference for all common timestamp formats including Unix, ISO 8601, RFC 3339, RFC 2822, SQL formats, and language-specific implementations. Copy-paste ready examples.
YYYY-MM-DDTHH:MM:SS±HH:MM
·maketimestamp.com·
Timestamp Format Cheatsheet: Quick Reference Guide
TagTinker Lets You Hack Electronic Shelf Labels
TagTinker Lets You Hack Electronic Shelf Labels
Was there ever anything wrong with simple paper price labels? Absolutely not. And yet, the world invented the electronic price tag anyway. If you happen to come across some of these devices and wan…
·hackaday.com·
TagTinker Lets You Hack Electronic Shelf Labels
Linux Max Open Files Limit Explained: What Does 1024 Mean? (Per Process, User, or System-Wide?)
Linux Max Open Files Limit Explained: What Does 1024 Mean? (Per Process, User, or System-Wide?)
If you’ve ever worked with Linux systems—whether as a developer, system administrator, or DevOps engineer—you’ve likely encountered the error message: **“too many open files”**. This frustrating issue often traces back to Linux’s “max open files limit,” a safeguard to prevent resource exhaustion. One number you’ll frequently see associated with this limit is **1024**. But what does 1024 actually mean? Is it a per-process limit, a user-wide cap, or a system-wide restriction? In this blog, we’ll demystify Linux’s open files limit, break down the difference between per-process, user, and system-wide limits, and explain why 1024 is such a common default. By the end, you’ll understand how these limits work, how to check them, and how to adjust them to keep your applications running smoothly.
·linuxvox.com·
Linux Max Open Files Limit Explained: What Does 1024 Mean? (Per Process, User, or System-Wide?)
Encrypting Encrypted Traffic To Get Around VPN Bans
Encrypting Encrypted Traffic To Get Around VPN Bans
VPNs, Virtual Private Networks, aren’t just a good idea to keep your data secure: for millions of people living under restrictive regimes they’re the only way to ensure full access to t…
·hackaday.com·
Encrypting Encrypted Traffic To Get Around VPN Bans
WSL9x: Add A Linux Subsystem To Your Windows 9x
WSL9x: Add A Linux Subsystem To Your Windows 9x
Considering that Windows NT has the concept of so-called ‘subsystems’ whereby you can run different systems side-by-side, starting with the POSIX subsystem and later the Windows Subsyst…
·hackaday.com·
WSL9x: Add A Linux Subsystem To Your Windows 9x
Haiku Isn’t Just For X86 Anymore, Boots On ARM In QEMU
Haiku Isn’t Just For X86 Anymore, Boots On ARM In QEMU
Ever since it was called OpenBeOS, Haiku has targeted the x86 platform. That makes good sense: it’s hard enough maintaining a niche system on ubiquitous hardware. But x86 isn’t the only…
·hackaday.com·
Haiku Isn’t Just For X86 Anymore, Boots On ARM In QEMU
How To Install Haiku On A UEFI-Only Modern System
How To Install Haiku On A UEFI-Only Modern System
Recently Haiku has become a bit of a popular subject of articles and videos, owing perhaps to how close it currently is to be a daily-driver OS and fulfilling the dream that BeOS set out with. That…
·hackaday.com·
How To Install Haiku On A UEFI-Only Modern System
Pied
Pied
·pied.mikeasoft.com·
Pied
Lab as Code - Part2
Lab as Code - Part2
This is the follow on to part1 where I was looking at how easy it is to deploy initial EVE-NG and CML lab setups from a declarative YAML file. Although both products are not really designed with that in mind I did manage to accomplish it with a relatively minimal amount of complexity in the topology file using a custom lab_builder tool. Next up is to give it a go with containerlab and netlab, I am expecting these to be a whole lot simpler as lab as code is the very ethos that they are designed for.
·theworldsgonemad.net·
Lab as Code - Part2
How to Use pushd and popd on Linux
How to Use pushd and popd on Linux
You can hop between directories on the Linux command line with the little-known pushd and popd commands. We'll show you how!
·howtogeek.com·
How to Use pushd and popd on Linux
sort and uniq: Clean and Count Log File Entries in Linux
sort and uniq: Clean and Count Log File Entries in Linux
In this guide, we'll show you how to use sort and uniq together to deduplicate, count, and summarize log file entries in Linux with practical examples.
·tecmint.com·
sort and uniq: Clean and Count Log File Entries in Linux
hyperfine: Find Exact Execution Time of Any Linux Command
hyperfine: Find Exact Execution Time of Any Linux Command
In this guide, we'll explain what hyperfine is, how to install it, and how to use it with real examples to measure and compare command performance in Linux.
·tecmint.com·
hyperfine: Find Exact Execution Time of Any Linux Command
How to Set Up a High-Speed WireGuard VPN on Debian 13
How to Set Up a High-Speed WireGuard VPN on Debian 13
In this guide, we'll explain what WireGuard is, how to install and configure a WireGuard VPN server on Debian 13, and how to connect a Linux client to it.
·tecmint.com·
How to Set Up a High-Speed WireGuard VPN on Debian 13
V2V Converter / P2V Converter - Converting VM Formats
V2V Converter / P2V Converter - Converting VM Formats
StarWind V2V Converter – a free & simple tool for cross-hypervisor VM migration and copying that also supports P2V conversion. Сonvert VMs with StarWind.
·starwindsoftware.com·
V2V Converter / P2V Converter - Converting VM Formats
ZAP – Getting Started
ZAP – Getting Started
The world’s most widely used web app scanner. Free and open source. ZAP is a community project actively maintained by a dedicated international team, and a GitHub Top 1000 project.
·zaproxy.org·
ZAP – Getting Started
Proxmox VE Helper-Scripts
Proxmox VE Helper-Scripts
Community-driven scripts that simplify the setup of Proxmox Virtual Environment. Over 400+ scripts to help you manage your homelab.
·community-scripts.org·
Proxmox VE Helper-Scripts