简体   繁体   中英

Copy files from Azure Blob Storage into azure SUSE LINUX VM

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM