Copy files from Azure Blob Storage into azure SUSE LINUX VM

1.4k Views Asked by At

I understand that we can mount Azure File shares onto Ubuntu Linux VM. Right now, is there any alternative to moving data into SUSE Linux VM instead of Ubuntu VMs?

moreover, my data lies on Blob containers instead of fileshare. if needed, i can move data into Fileshare from Blob containers. Any suggestions, please.

1

There are 1 best solutions below

3
On BEST ANSWER

You could mount Azure File shares onto Suse Linux VM. You could use the following to mount your File shares.

sudo zypper install samba*

##create your directory

mkdir -p /home/test

sudo mount -t cifs //shuitestdiag630.file.core.windows.net/shuifile [mount point] -o vers=3.0,username=shuitestdiag630,password=[storage account access key],dir_mode=0777,file_mode=0777

More information please refer to the article

Also, you could download your blob data to your VM. You could use Azure CLI to manage your blob data. Azure CLI supports to run on Linux and download blobs. More information about Azure CLI please refer to the article