Skip to content

Instantly share code, notes, and snippets.

View Henkoglobin's full-sized avatar
🦊
Teaching.

Henrik Ilgen Henkoglobin

🦊
Teaching.
View GitHub Profile
@waiteb3
waiteb3 / TrueNAS-Scale-NTFS.md
Last active January 30, 2026 12:40
Mount an NTFS Drive to TrueNAS

Mounting an NTFS Disk in TrueNAS Scale to migrate old data

This is a guide to copy data off an old NTFS disk to a TrueNAS ZSF pool attached to the same device. Using a Windows computer and SMB Shares to copy things to a pool is far safer.

TrueNAS (as of Dec 12, 2025) does not have a native way of mounting this drive. For my case, that was fine, as I only wanted to copy the data off an old Windows HDD onto into my big storage zpool, and I did not wish to go grab a Windows machine for just this one usage.

This is all to be done at your own risk. Computers can be spiteful, so make a backup, or do this only on a fresh system.

Done on TrueNAS SCale OS Version: 25.10.0

@bmaupin
bmaupin / nsui-ssl-error.md
Last active March 5, 2026 18:45
New Super Ultimate Injector SSL error fix
@lummie
lummie / enum.go
Last active June 16, 2025 08:38
Golang Enum pattern that can be serialized to json
package enum_example
import (
"bytes"
"encoding/json"
)
// TaskState represents the state of task, moving through Created, Running then Finished or Errorred
type TaskState int