Posts

Showing posts from February, 2025

Vathsa's Cloud - Command Line steps and examples

Azure Command Line    Azure Create Custom OS Image & Deploy VM's : az vm deallocate --resource-group atbial --name atbialServer az vm generalize --resource-group atbial --name atbialServer az image create --resource-group atbial --name atcentos7.4 --source atbialServer az vm create --resource-group at_test_all --name atFrmImg --image "/subscriptions/a4d11e3d-98db-4857-b50e-6813049bbc66/resourceGroups/atbial/providers/Microsoft.Compute/images/atcentos74" --generate-ssh-keys How To Delete Storage Disk az disk list --output table az disk delete --resource-group ECOMM --name azraybanstg_OsDisk_1_acf662ac54724ef08ebf64d58fff3df8 CREATE VM Using Existing Image  Step By Step (DR Script)  ## Copy OS disk from Central India to SouthIndia DC storage account az disk copy-to-vhd --account-name acebialrstorage --destination-blob bialprodOSdisk.vhd  --source-resource-group acebial --destination-container acebialrprod --source-disk-name acebialProdOSdisk  ##...