Linux – Mount Azure datalake storage folder as a folder in linux ubuntu

azurelinuxUbuntu

I want to mount an Azure Datalake Folder as a Ubuntu folder. The link shows how to create 'system managed entities' to connect a Linux machine to ADLS, however, it shows 'REST'ful way of connecting to the folder, which is not I need. We have blobfuse way of connecting Azure Storage Blob to Linux. I am looking for something similar or Azure native way to MOUNT my ADLS folder inside my Ubuntu machine.

Something like:
sudo mount -t cifs //.azuredatalakestore.net/bulk_data /home/manju/mnt –verbose -o vers=3.0,username=xtomseursvsisldpadls,password=,dir_mode=0777,file_mode=0777

Best Answer

Related Topic