> ## Content Index
> Fetch the complete content index at: https://linuxhandbook.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# LHB Linux Digest #26.13: Know Your File, File-based Workspace Certifications and More
- URL: https://linuxhandbook.com/newsletter/26-13/
- Published: 2026-09-18T12:47:47.000Z
- Updated: 2026-09-18T12:47:47.000Z
- Description: Sometimes the fastest fix is just asking the right question first.
- Author: Abhishek Prakash
- Tags: Newsletter

There is a new addition to the Digest from this edition. There's a dedicated self-hosting section. Actually, it's a re-entry, as there used to be such a section earlier. Self-hosting is gaining even more popularity. 

Docker compose has made things easier and then the privacy concern has made people aware. And thus the dedicated self-host section is back. Even if you do not self-host, at least you can discover some cool new tool.

## Know your file before you open it

Everything is a file in Linux and you'd be surprised how much a file will tell you before you even open it. The trick is knowing which command to ask.

Start with the [file command](https://linuxhandbook.com/file-command/). It ignores the extension entirely and reads the actual contents to tell you what something really is. That download with no extension, or the `.txt` that's secretly a JPEG? Just run file on it:

```
file mysterious-file
```

Once you know what it is, [stat](https://linuxhandbook.com/stat-command/) fills in everything else: exact size, owner, permissions, and [three separate timestamps](https://linuxhandbook.com/file-timestamps/) for when the file was last read, when its contents changed, and when its metadata was last touched. Think of it as `ls -l` but for a specific file and with more details.

Then there's [realpath](https://linuxhandbook.com/get-file-path/), for when you're not even sure where the file is located. That's why the name "real path". It resolves every symlink and those `..` in the path and gives you the real location of the file. Handy when you're inside a symlinked directory and a script keeps writing to the "wrong" place.

And if a file won't budge with a "resource busy" error, [lsof](https://linuxhandbook.com/lsof-command/) shows you exactly which process is holding it open, so you know what to stop before trying again.

## **💡**Quick terminal tip

The `namei` command breaks down a file path component by component to display the permissions of every ancestor directory.

```
namei -l </home/linuxhandbook/Projects/scripts.sh>

```

The above command will show the permission of each item in the path in a compact list.

![](https://linuxhandbook.com/content/images/2026/09/namei-command.png)

This is especially useful when resolving unexplained "Permission Denied" errors where a file is readable, but a parent directory lacks execute (`+x`) access.

## 🎓 Make your Linux skills official 

[![](https://linuxhandbook.com/content/images/2026/09/lf-deal.webp)](https://www.awin1.com/cread.php?awinmid=85919&awinaffid=429005&ued=https%3A%2F%2Ftraining.linuxfoundation.org%2Fseptember-2026-promo%2F&ref=linuxhandbook.com)

Either you are an expert or you are learning. But a certification is how you prove your skill to someone who's hiring.

Linux Foundation, the official organization behind the Linux project, offers numerous certification and training exams that hold value in the job market.

Their [back-to-school sale is running until September 22](https://www.awin1.com/cread.php?awinmid=85919&awinaffid=429005&ued=https%3A%2F%2Ftraining.linuxfoundation.org%2Fseptember-2026-promo%2F&ref=linuxhandbook.com). The LFCS, their Certified System Administrator exam, is the obvious pick if Linux is your day job. Bundle it with the LFS207 course and the price drops from $645 to $387.

Going for the more lucrative Kubernetes and DevOps instead? The CKA course-and-exam bundle is also $645 down to $387, and the full CKA + CKAD + CKS exam bundle goes from $1245 to $747.

There are two codes depending on what you pick. `SEPT26BTS35` takes 35% off individual courses and certifications, and `SEPT26BTS40` takes 40% off bundles and instructor-led courses.

If a cert has been sitting on your list for months (or years), take advantage of the discount. It closes on September 22.

[Get 40% off on Certifications](https://www.awin1.com/cread.php?awinmid=85919&awinaffid=429005&ued=https%3A%2F%2Ftraining.linuxfoundation.org%2Fseptember-2026-promo%2F&ref=linuxhandbook.com)

## 📦 Self-hosting 

[Jotty](https://github.com/fccview/jotty?ref=linuxhandbook.com) is a self-hosted, file-based workspace for personal notes, checklists, and project tasks. There's no external database to run, it just reads and writes plain files, which makes backups and syncing easier. A good fit if Notion feels like overkill and you'd rather own the data.

[GitHub - fccview/jotty at linuxhandbook.comLightweight but powerful alternative for managing your personal, file based, notes and checklists. - fccview/jotty![](https://linuxhandbook.com/content/images/icon/favicon-7d702d3b-92cc-4518-8fd8-c2861f2907f3.png)GitHubfccview![](https://linuxhandbook.com/content/images/thumbnail/jotty-bd0e0523-848f-442b-b22c-4aead3bdf9e4)](https://github.com/fccview/jotty?ref=linuxhandbook.com)

## 🛠️ Tool discovery

[Lerd](https://github.com/lerd-env/lerd?ref=linuxhandbook.com) is an open-source local PHP dev environment inspired by Laravel Herd. It gives you a rootless, zero-Docker workflow on Linux, macOS, and WSL2\. If you've been spinning up containers just to run a PHP project locally, try this lighter alternative.

[GitHub - lerd-env/lerd: Open-source, Herd-like local PHP development environment for Linux and macOS. Automatic .test domains, per-project PHP/Node isolation, one-command TLS. Podman-native, rootless.Open-source, Herd-like local PHP development environment for Linux and macOS. Automatic .test domains, per-project PHP/Node isolation, one-command TLS. Podman-native, rootless. - lerd-env/lerd![](https://linuxhandbook.com/content/images/icon/favicon-94d5cbb5-daa1-4b98-aec5-3c84472a108d.png)GitHublerd-env![](https://linuxhandbook.com/content/images/thumbnail/f3cbb867-0869-41d0-a2ae-e3ae55a1f8a5-87220666-e8f8-4167-a6c9-53bb07d65a4c)](https://github.com/lerd-env/lerd?ref=linuxhandbook.com)

## 📰 Linux news that matters

- [An Italian logistics company in Bergamo successfully migrated its office operations from Windows](https://itsfoss.com/linux-stories/italian-logistics-company-migration/?ref=linuxhandbook.com) to Kubuntu LTS, Nextcloud, and Mattermost, cutting recurring licensing fees and eliminating daily workstation slowdowns without disrupting freight operations.
- [Vercel’s two-week, $1 million sandbox bug bounty challenge](https://www.securityweek.com/1-million-sandbox-challenge-uncovers-linux-kernel-flaws/?ref=linuxhandbook.com) against its Firecracker microVMs received 1,285 submissions that breached no customer data, but exposed two upstream Linux kernel networking defects causing deterministic host crashes and host memory leaks.
- [Canonical developers are proposing a dedicated linux-firmware-hwe package](https://www.phoronix.com/news/Ubuntu-Considers-Linux-Firm-HWE?ref=linuxhandbook.com) for Ubuntu LTS releases to decouple newer hardware enablement firmware from General Availability kernels, preventing driver regressions for users staying on older kernel baselines.
- [The Open Secure AI Alliance has joined the Linux Foundation](https://www.prnewswire.com/news-releases/open-secure-ai-alliance-joins-the-linux-foundation-to-build-a-shared-open-defense-stack-for-the-ai-era-302877844.html?ref=linuxhandbook.com) to establish neutral governance for open-source AI defense tools, opening an RFC on its SAFE initiative to standardize incident reporting.
- [Sidero Labs has launched Talos Enterprise Linux](https://www.prnewswire.com/news-releases/sidero-labs-launches-talos-enterprise-linux-302877045.html?ref=linuxhandbook.com), introducing a commercial tier with FIPS 140-3 builds, SBOMs, and regulatory compliance artifacts while keeping the core operating system fully open source under MPL-2.0.

## 😂 Geek humor

Actually, I do both ;)

![](https://linuxhandbook.com/content/images/2026/09/lhb-meme-sep-18.jpg)

## 💌 Keep on loving Linux Handbook

The GitOps course is nearly ready and lands next week, built on the Git basics course. [Get your Pro membership](https://linuxhandbook.com/#/portal/signup) now and you'll have it the moment it drops, plus unlimited access to our [eBooks](https://linuxhandbook.com/ebooks/), [courses](https://linuxhandbook.com/courses/), and every tutorial we've published.

**Missed the previous editions?** You can [access the newsletter archives.](https://linuxhandbook.com/newsletter/)

I like reading your messages, so just hit the reply button and share your thoughts 😄