Skip to content

Instantly share code, notes, and snippets.

@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 24, 2025 02:03
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