Skip to content

Instantly share code, notes, and snippets.

@NakHalal
NakHalal / .gitignore
Last active December 21, 2025 08:22
NanoGPT CCR Custom Transformer
rebase.ps1

Proxmox VE tips

Just some tips I gathered over time. All in one easily reachable place so I can share it wherever I want.

Please note that unless you see a shebang (#!/...) these code blocks are usually meant to be copy & pasted directly into the shell. Some of the steps will not work if you run part of them in a script and copy paste other ones as they rely on variables set before.
The { and } surrounding some scripts are meant to avoid poisoning your bash history with individual commands, etc. You can ignore them if you manually copy paste the individual commands.
I chose to write things "in the open" that way so there's still some control and things don't become a black box.

Table of contents

@mfnalex
mfnalex / create-chunks.sh
Last active May 28, 2025 16:16
Proxmox Backup Server: Create Chunkstore on filesystems not supporting over 65k hard links per directory
#!/bin/bash
# Gist: https://gist.github.com/mfnalex/41f6eab4baf032206228035d784ab624
# Creates the directory layout for a Proxmox Backup Server Datastore
# split up into two directories for people who have to use filesystems
# not allowing more than 65k directory entries.
# Steps:
# 1. Create new Datastore in Proxmox Backup Server GUI
@nonkronk
nonkronk / vscode-tunnel-daemon-oracle-cloud.md
Last active November 18, 2025 05:53
Setup an Always-on VSCode Tunnel on Ubuntu Server

Setup an Always-on VSCode Tunnel on Oracle Cloud Always-free Instance

Access Oracle Cloud VM from any browser on any devices

Install VSCode for arm64

wget -O vscode.deb https://code.visualstudio.com/sha/download\?build\=stable\&os\=linux-deb-arm64 && sudo apt install ./vscode.deb --fix-broken -y && rm vscode.deb