Author Archives: tyler

About tyler

I would like to remain as anonymous as possible, so I am going to be somewhat vague. I have been working in IT for 15 years. I have experience with PC repair, software development, security, and systems administration. Over the years I have built my skills through self-study, military training, formal education, certification programs, vendor training, coursera.org, and work experience.

How to Determine Which Package Provides a File – DNF

By | 2023-11-04

There will be times when you will be wanting a particular program, header, or library, but aren’t sure which package it is in. Instead of trying to search the repositories for packages by name and description with dnf search, you can use dnf provides to search the repository for packages that provide a particular file.… Read More »

PKI – Simple Explanation

By | 2023-10-28

PKI is an initialism for public key infrastructure. The context I typically see it used in are TLS or PGP. Don’t worry if you don’t know what those are. To understand PKI, you need to understand some basic cryptographic concepts. There is no math required. For a more complete introduction to cryptographic concepts, I wrote… Read More »

Linux For Loop

By | 2023-10-14

I chose this topic because SEO tools found it is a common search topic. The answer you need is there are multiple variants of Linux for loops. The technically correct answer is there isn’t such a thing, as Linux is just a kernel. The answer you want is how to use a Linux for loop.… Read More »

Remove an LVM Disk

By | 2021-11-21

There may be occasions where you need to remove an LVM disk. Maybe the host is a VM and you need space on the hypervisor? Perhaps the device is a fiber channel SAN target that you no longer need? No matter the reason, it isn’t terribly difficult to remove an LVM disk. There are three… Read More »

How to Undo a Yum Update

By | 2021-10-16

While uncommon, sometimes a package update can cause problems. Distributions that use yum or dnf track package changes with a transaction log. You can undo a yum update by undoing the relevant transaction(s). In order for this to work, the previous versions of any packages in the transaction must exist in the repositories. The process… Read More »