poking and prodding

This commit is contained in:
2026-08-04 19:39:34 -04:00
parent 0c6e98ec9c
commit bbd73c5476
57 changed files with 1282 additions and 260 deletions
-12
View File
@@ -1,12 +0,0 @@
+++
date = '2026-08-01T05:16:03Z'
title = 'Cachylove'
tags = ["docs", "linux", "tech"]
+++
**https://cachyos.org/download/**
^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^
Go download it while you read this
+1
View File
@@ -1,6 +1,7 @@
+++
date = '2026-07-31T22:33:32-04:00'
title = "What's in the lab right now?"
tags = ['linux', 'homelab']
+++
The network's in a cool spot right now.
-6
View File
@@ -1,6 +0,0 @@
+++
date = '2026-07-31T17:11:06-04:00'
title = 'Docshere'
draft = true
+++
Docs will go here!
+31 -3
View File
@@ -2,9 +2,10 @@
date = '2026-08-02T20:58:52-04:00'
title = 'fstab guide'
draft = true
tags = ['linux', 'guide']
+++
When I was but a burgeoning console junkie cutting my teeth in Mint, my first few forays with mounting a new drive had proven to be a struggle. Sure - LLMs exist now, why bother writing this?
When I was but a burgeoning penguin cutting my teeth in Mint, my first few forays with mounting a new drive had proven to be a struggle. Sure - LLMs exist now, why bother writing this?
Why not.
@@ -12,7 +13,13 @@ This brief tutorial should be cross-flavor, meaning it should work on Debian-, F
## STOP TALKING AND GIVE ME INFO
I'm assuming your drive is already installed. If not, To begin, if you don't already have it, I like to use Gnome's Disk Utility on most of my distributions. Install it with:
### Installing Gnome Disks
I'm assuming your drive is already installed in the machine.
To begin, if you don't already have it, I like to use Gnome's Disk Utility on most of my distributions - it is handy for our use case.
Install it with:
```bash
sudo pacman -Syyu
@@ -27,17 +34,38 @@ gnome-disk-utility
Ideally you'll have Disks on one window, terminal on the other.
### Formatting
Now. In Disks, you'll want to format your disk from the 3-dot menu in the top right.
Once formatted, mount the sucker. Name it something you'll remember, we'll need it soon.
*(Quick note! If you plan to daily this drive in Linux, leave it as "ext4". If you intend to dual boot, format to "fat32")*
### Making a Directory
Now you're formatted. You'll notice a little string of numbers under the partition now, a field labeled "UUID". We need that. Copy paste your UUID, and move over to the terminal
In your terminal, run
Now it's time to make a directory - so the computer knows where to dump the available storage. In your terminal:
```bash
sudo mkdir -p /mnt/YourDriveName
```
Name the directory whatever you decided earlier.
### /etc/fstab
```bash
sudo nano /etc/fstab
```
Use the DOWN key to go to the bottom of the file. Once there, insert:
```txt
UUID=[uuid from Gnome Disk Util] /mnt/
```