Overview vmdk’s, the underlying filesystem commonly used in vmware, can be mounted on a Linux server using the qemu utilities. In this example, I downloaded an ova, unarchived it, and retrieved the vmdk files. Once exposed, I am able to mount the filesystems embedded within the vmdk.
In this example, the ova is a virtual “appliance” which prohibits access a low level root shell. By mounting the vmdk file system directly, we can take a peek at the hidden secrets the vendor keeps under lock and key.
Text Processing in Linux: Understanding Grep, sed, and AWK
This guide introduces you to Grep, sed, and AWK, which are Linux tools used for text processing. It explains the differences between grep, sed, and AWK and provides beginner examples for each.
I am using the unix pr command to combine multiple text files into one text file:
pr -F *files > newfile
Each file is a different length, a different number of lines. I am mostly happy with the
Makefiles 101: how to use make as a task automation tool
by Alex Nadalin Makefiles 101: how to use make as a task automation tool Photo by Agto Nugroho [https://unsplash.com/photos/1mnXGDl3iRY?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText] on Unsplash [https://unsplash.com/search/photos/factory?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText] It seems like developers are afraid of using make as they associate it with the painful experience of compiling things from scratch — the dreaded ./configure &&
Make is a tool that is primarily used to assist in compiling software in an automated way. However, makefiles, the files that make relies on for configuration, are very flexible and can be used to automate just about any task. In this article, we will discuss how to use makefiles to make repetitive system administration tasks easier.
The open source PG Vector brings vector similarity search into Postgres, said Sirish Chandrasekaran of Amazon Web Services in this episode of The New Stack Makers.
Bazzite is a custom image built upon Fedora Atomic Desktops that brings the best of Linux gaming to all of your devices - including your favorite handheld.
I have very mixed opinions on LLMs, as they stand. This note won’t be digging into my thoughts there - I don’t want to have that discussion. However, while I’m not exactly doing cutting-edge research here, I do put effort into publishing for humans.
The Rustls TLS library can now be used with Nginx via an OpenSSL compatibility layer. This means that Nginx users can switch from OpenSSL to Rustls with minimal effort - users can simply swap in a new TLS library without needing to modify or recompile Nginx.
We have targeted Nginx versions greater than 1.18 on Ubuntu 22.04 or newer for initial support. Here's how easy it is to get going on x86_64 Ubuntu Linux 22.
ntfy.sh | Push notifications to your phone or desktop via PUT/POST
ntfy is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, and/or using a REST API.
NixOS: build your system on Github actions! • gvolpe's blog
What if I told you that you can save plenty of time and CPU-power by pre-building your entire NixOS configuration on Github actions? Fresh installations coul...
Weekend Project: Setting up DNS Service Discovery - Linux.com
DNS Service Discovery (DNS-SD) is a component of Zeroconf networking, which allows servers and clients on an IP network to exchange their location and access details around the LAN without requiring any central configuration. Most Linux distributions supply the Avahi library for Zeroconf support, but not nearly as many users take advantage of it. Let’s …