Skip to content

Instantly share code, notes, and snippets.

View itteamlxs's full-sized avatar

_n30_usr itteamlxs

View GitHub Profile
@itteamlxs
itteamlxs / guia_instalacion_arch_linux.md
Created August 10, 2025 13:40 — forked from MasterGeekMX/guia_instalacion_arch_linux.md
Una guía de instalación moderna y actualizada de Arch Linux con BTRFS en un sistema UEFI
#!/bin/bash
PS3='Please select the VM: '
n=0
while read line ; do
options[n++]="$line"
done <<<"$(vboxmanage list vms | awk '{$NF=""; print $0}' | tr -d '"')"
select opt in "${options[@]}" ; do
vm_name="$opt"
break