How to Add new Drive to an existing Azure VM? And which Managed Disk should be used for 300GB space?

Utkarsh Rajwansh 0 Reputation points
2023-08-27T21:09:22.5533333+00:00

Hi, I have to unzip a 160GB file which has to be uploaded in blob, but my existing VM has around 50gb free in C Drive(OS Drive), So can I add a new Drive (256GB) in current VM without formatting or disturbing existing VM, and which type of Managed Drive Should be used. Please Suggest.

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
9,041 questions
Azure Disk Storage
Azure Disk Storage
A high-performance, durable block storage designed to be used with Azure Virtual Machines and Azure VMware Solution.
668 questions
{count} votes

1 answer

Sort by: Most helpful
  1. TP 125.8K Reputation points Volunteer Moderator
    2023-08-28T08:01:36.6466667+00:00

    Hi,

    In the portal navigate to your VM and click Disks blade, then Create and attach a new disk. Give it a name, select storage type (e.g. Standard HDD), enter size, and click Save button.

    azure add disk to vm

    I recommend you start with trying Standard HDD since it has the lowest cost. Depending on how you use the drive and your needs there may or may not be meaningful performance difference between Standard HDD or Standard SSD or Premium SSD.

    If you find that Standard HDD is too slow for your purposes you could Detach it from the VM, delete it, and create and attach a new SSD disk instead by repeating above steps. Before you detach and delete the disk make sure you don't have anything on it that you need since it will be lost.

    Below pricing page shows you prices for each type and size of managed disk:

    https://azure.microsoft.com/en-us/pricing/details/managed-disks/

    Next you need to connect to the VM using RDP, open Disk Management, initialize the new disk, then finally create new NTFS volume on it with drive letter (e.g. F:).

    Once you have completed the above steps the new disk will be ready to use.

    Please click Accept Answer if the above was helpful. Please add a comment if something is unclear or you still need help.

    Thanks.

    -TP

    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.