Skip to content

Instantly share code, notes, and snippets.

@NakHalal
NakHalal / .gitignore
Last active April 26, 2026 18:12
NanoGPT CCR Custom Transformer
rebase.ps1

Proxmox VE tips

Just a somewhat chaotic list of Proxmox VE related tips/notes.

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 cluttering your shell history with individual commands, etc. You can ignore them if you manually copy paste the individual commands.

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 May 7, 2026 18:47
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