Author : MD TAREQ HASSAN | Updated : 2021/01/23

Points to be noted

Register NFS to subscription

Open cloud shell, select PowerShell and register NFS to subscription

Register-AzProviderFeature -FeatureName AllowNFSV3 -ProviderNamespace Microsoft.Storage

Register-AzResourceProvider -ProviderNamespace Microsoft.Storage

Verify that NFS is registered

Get-AzProviderFeature -ProviderNamespace Microsoft.Storage -FeatureName AllowNFSV3

Creating block blob storage accoount for vm

Azure Virtual Machine - Mounting blob storage Step 1

Azure Virtual Machine - Mounting blob storage Step 2

Azure Virtual Machine - Mounting blob storage Step 3

Azure Virtual Machine - Mounting blob storage Step 4

Azure Virtual Machine - Mounting blob storage Step 5

Azure Virtual Machine - Mounting blob storage Step 6

Check Storage Account Networking

Mounting to VM

Open CMD and execute following command

mount -o nolock <storage-account-name>.blob.core.windows.net:/<storage-account-name>/<container-name> *

Example:
mount -o nolock foosa.blob.core.windows.net:/foosa/bar-container *

Command for mounting blob container to VM