Skip to content

Instantly share code, notes, and snippets.

View darxtorm's full-sized avatar

JD darxtorm

  • 15:24 (UTC +10:00)
View GitHub Profile
@taskylizard
taskylizard / fmhy.md
Last active July 23, 2024 09:24
/r/freemediaheckyeah, in one single file (view raw)
@mrl22
mrl22 / move-storage.sh
Last active February 22, 2024 05:58
Bash script to move storage of all Proxmox Virtual Machines to different storage
#!/bin/sh
movefrom='micronssd'
moveto='wdredpro'
for vm in $(qm list | awk '{print $1}' | grep -Eo '[0-9]{1,3}');
do
for storage in $(qm config $vm | grep $movefrom: | awk '{print $1}' | grep -Eo '[a-z0-9]+');
do
echo Moving VM$vm Storage $storage