如何将本地Bash Shell链接到Azure中的文件?

时间:2019-02-22 23:38:50

标签: azure ubuntu

我一直在使用Azure Cloud Shell进行一些工作,但是现在我想使用本机终端而不是浏览器Shell。

我有installed the azure cli,可以使用az login登录。

如何在本地处理以前可以从命令行在云外壳中访问的文件?

find . -not -path '*/\.*'
.
./clouddrive
./terraform
./terraform/variables.tf
./terraform/terraform.tfstate
./terraform/terraform.tfstate.backup
./terraform/main.tf

例如是否可以挂载该terraform目录?还是有其他处理我在Cloud Shell中创建的文件的方法?

1 个答案:

答案 0 :(得分:0)

对于Azure Cloud Shell,它也是与Azure File Share相关联的Linux系统,并且OS文件存储在File Share中。因此,您可以将文件共享安装到您的VM,然后可以在其中使用文件。

但是您应该将目录移动到路径:

/home/charles/clouddrive

这样的测试屏幕截图:

enter image description here enter image description here

然后,您可以按照Mount Azure File Share to Linux中的步骤将文件共享安装到VM。