Skip to content

Instantly share code, notes, and snippets.

@9minuet
9minuet / grub-auto-repair.sh
Created September 2, 2025 09:05
Proxmox VE 9 NUC grub 복구 스크립트
#!/bin/bash
# Proxmox VE 9 NUC grub 복구 스크립트
echo "===== Proxmox grub 자동 복구 시작 ====="
# 1️⃣ 루트 파티션 / ZFS 자동 감지
ROOT_PART=""
ZFS_POOL=""
if command -v zpool >/dev/null 2>&1; then
for pool in $(zpool list -H -o name); do