Pre-requisites: 1 – Azcopy 2 – Storage account path Step: 1 #Download azcopy to the ubuntu vm wget “https://aka.ms/downloadazcopy-v10-linux” -O azcopy.tar.gz #Example root@LINUX01:~# wget “https://aka.ms/downloadazcopy-v10-linux” -O azcopy.tar.gz –2022-12-18 11:04:01– https://aka.ms/downloadazcopy-v10-linux Resolving aka.ms (aka.ms)… 23.52.149.185 Connecting to aka.ms (aka.ms)|23.52.149.185|:443… connected. HTTP request sent, awaiting response… 301 Moved Permanently Location: https://azcopyvnext.azureedge.net/release20221108/azcopy_linux_amd64_10.16.2.tar.gz [following] –2022-12-18 11:04:01– https://azcopyvnext.azureedge.net/release20221108/azcopy_linux_amd64_10.16.2.tar.gz Resolving azcopyvnext.azureedge.net […]
Tag: Azure
Azure Basics – Clone or Duplicate a Virtual Machine in Azure
In this article let’s discuss how can we clone or duplicate a virtual machine in Azure We will achieve this using 3 steps Create a Snapshot Create a Managed disk from Snapshot Create a VM from Managed disk Create a Snapshot for an existing VM Login to Azure Portal Click on the Resource Groups from […]
Azure Basics – Move VM between different resource groups
Azure portal have an option to move VM’s between the Resource groups Here is the step-by-step guide Login to Azure Portal Click on Resource Groups from Left side blade Select the Resource Group where your VM located Select the VM resources that needs to be moved Click on Move –> Move to another resource group […]
Azure Basics – Run shell script or command on a Linux VM without login to VM
There are times we can’t log in to the VM due to several reasons. Azure provided a way to run commands on the VM without login in using SSH. From the run command section, we can run a shell script and Ipconfig information of that VMIf we need to find disk info, just go to […]
Azure Basics – Reset password for a Linux VM
Reset password or create a new user account in Azure for a Linux VM – There are situations when we can’t connect to a Linux VM in azure due to the SSH key not working or forgot the root/admin password.To resolve these kinds of issues, from the Azure portal we can reset the password for […]
Azure Basics – Service Principal creation
Service principal in Azure is used for accessing the Azure resources by third-party applications, automation tools, and applications. An Azure admin can control the access level for these Service principals and it’s always a better approach to provide only required privileges than an application required to access the resources. Service Principal is a kind of […]