Create an Azure Cobalt 100 Arm64 VM using the Azure portal

You can create an Azure Cobalt 100 Arm64 virtual machine in several ways, including the Azure portal, the Azure CLI, or an Infrastructure as Code (IaC) tool.

In this Learning Path, you’ll use the Azure portal to create a VM with the Cobalt 100 processor, following a process similar to creating any other virtual machine in Azure.

Create the virtual machine

To create an Azure virtual machine, open the Azure portal and go to Virtual machines.

Now follow these steps:

  • Select Create > Virtual machine from the toolbar.

  • In Basics, complete Instance details including Virtual machine name and Region.

  • In Image, choose Ubuntu Pro 24.04 LTS, then set Architecture to Arm64.

  • In Size, select See all sizes, choose the Dpsv6 (D‑series v6) family, then select D4ps_v6.

    Image Alt Text:Azure portal VM creation — Azure Cobalt 100 Arm64 virtual machine (D4ps_v6)alt-textSelect the D-Series v6 family of virtual machines

  • Under Administrator account, set Authentication type to SSH public key.

  • Enter the Username for the VM.

  • Select Generate new key pair, select SSH key type (ED25519 or RSA), and provide a Key pair name.

  • In Inbound port rules, set Public inbound ports to Allow selected ports, then select HTTP (80) and SSH (22).

    Image Alt Text:Azure portal VM creation — inbound port rules alt-textAllow inbound port rules

  • Select Review + create and verify your configuration.

    Image Alt Text:Azure portal review and create — Ubuntu Pro Arm64 VM alt-textReview and create an Azure Cobalt 100 Arm64 VM

  • Select Create, then Download private key and create resource.

    Image Alt Text:Azure portal VM creation — download private key alt-textDownload private key and create resource

  • After deployment completes, select Go to resource. From Overview, copy the Public IP address and connect through SSH using your key.

    Image Alt Text:Azure portal deployment confirmation — VM running alt-textVM deployment confirmation in Azure portal

Connect to your VM (example)

Use the command below, replacing placeholders with your values:

    

        
        
ssh -i <path-to-private-key> <username>@<public-ip-address>

    
Note

To learn more about Arm-based virtual machines in Azure, see “Getting started with Microsoft Azure” in Get started with Arm-based cloud instances .

Back
Next