Azure Blob Storage Client (GUI) for Linux

Is there an Azure Blob storage GUI client that can run on Linux?

I found many clients running Windows and several web clients, but I am looking for something like Azure Explorer .

+4
source share
3 answers

I do not think there is a desktop client for Linux. I would recommend trying Zud.io ( https://zud.io/ ). It is a browser-based browser for storing data and has the ability to manage blobs, tables and queues.

+6
source

Well, something is close that should work without code or very little. I am posting this since you mentioned Java.

Apache Commons VFS is a virtual file system library that supports multiple backends such as FTP, SFTP, S3, etc. etc. also a GUI for Apache VFS, called Commons VFS - UI . This GUI uses Apache VFS to access a wide range of virtual file systems.

I wrote the Apache VFS Provider for Microsoft Azure called VFS-Azure, which you can find at https://github.com/kervinpierre/vfs-azure .

There is no reason anyone could not easily add a VFS-Azure provider to the list of well-known providers in the Commons VFS user interface. I will see when I have more time on my schedule, but I suspect something that can be easily completed.

0
source

You can use http://storageexplorer.com/ , it is a cross platform.

0
source

Source: https://habr.com/ru/post/1497245/


All Articles