Add files via upload

This commit is contained in:
kneutron 2024-08-27 18:25:07 -06:00 committed by GitHub
parent 26addc9b5a
commit 6c4c7103d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,13 @@
#!/bin/bash
# NOTE proxmox can import/convert .vdi disks without having to .qcow them 1st
source ~/bin/failexit.mrg
# converted qcows from vbox are here
# converted qcows from vbox
cd /mnt/seatera4-xfs
echo "Usage: \$1=name-of-vm \$2=RAM-in-GB [optional] \$3=newvmnumber [optional]"
# Use 3rd arg in case of new vm number not taking containers into account
echo "Usage: \$1=name-of-vm \$2=RAM-in-GB [optional] \$3=newvmnumber"
if [ "$1" = "" ]; then
failexit 101 "1st arg not supplied, must be VMNAME"
@ -18,7 +19,7 @@ fi
#oldlinux=l24
# integer / number
declare -i ram lastid newid
declare -i ram lastid newid #newidarg
if [ "$2" = "" ]; then
ram=4096
@ -26,9 +27,9 @@ else
ram=$2
fi
echo "$(date) - Getting last VM number"
lastid=$(qm list |tail -n 1 |awk '{print $1}')
date
#echo "$(date) - Getting last VM number"
#lastid=$(qm list |tail -n 1 |awk '{print $1}')
#date
# qm list
# VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID
# 100 lmde stopped 4096 21.00 0
@ -36,9 +37,10 @@ date
# 103 win10-restore-from-vbox-choco stopped 6144 80.00 0
# 104 pfsense-272 running 1500 20.00 813250
let newid=$lastid+1
# more reliable method
let newid=$(pvesh get /cluster/nextid)
[ "$3" = "" ] || newid=$3
echo "Last vmid: $lastid - New id: $newid -- RAM: $ram -- PK"
echo "New id: $newid -- RAM: $ram -- PK"
read -n 1
# --ostype l26 \
@ -50,7 +52,7 @@ qm create $newid \
--net2 virtio,bridge=vmbr1,link_down=0,firewall=0 \
--name "$newname" \
--scsihw virtio-scsi-single \
--cores 1 --sockets 1 --cpu cputype=host \
--cores 2 --sockets 1 --cpu cputype=host \
--ide2 none,media=cdrom \
--memory $ram \
--vga=virtio,memory=128 \
@ -58,7 +60,7 @@ qm create $newid \
--start 0 \
--onboot 0 \
--boot order="ide2;sata0" \
--sata0 zfs1:0,cache=writeback,import-from=$PWD/suse-tumbleweed-20240219-desktop-kde-disk0.qcow2 \
--sata0 tosh10-xfs-multi:0,cache=writeback,import-from=$PWD/test-zfs-21-Draid-sata0-0.vdi \
|| failexit 40 "Failed to create VM $newid $newname"
# --sata1 zfs1:0,cache=writeback,import-from=$PWD/cubietruck-temp-replacement-squid-pihole-sata0-1-squidextend.vdi.qcow2 \
@ -68,3 +70,7 @@ exit;
L, not One
--ostype <l24 | l26 | other | solaris | w2k | w2k3 | w2k8 | win10 | win11 | win7 | win8 | wvista | wxp>
# create a disk commandline and attach to vm
pvesm alloc local-lvm 2002 vm-2002-disk-3 1
qm set 2002 -scsihw virtio-scsi-pci --scsi2 local-lvm:vm-2002-disk-3