49

I've been using the Amazon S3 Management console to browse my S3 files. Unfortunately, it doesn't seem to be able to sort files (in a given bucket) by anything other than whatever its default is (which seems to be by name). I'd like a nice GUI client for seeing these files which will let me sort them by date, so the newest will appear on top.

UPDATE: I'd also like it if the client could do a text search within a bucket ... but I suspect that this is wishful thinking.

Braiam
  • 67,791
  • 32
  • 179
  • 269
Eyal
  • 5,005
  • 2
    I just gave http://www.crossftp.com/ a try and it worked like a champ. I was able to sort files by date and drag/drop download multiple files. – hijackmount Mar 14 '17 at 17:13
  • I'm on 18.04, QT S3 Browser is perfect: https://snapcraft.io/qts3browser – GrafiCode Mar 02 '22 at 11:50

8 Answers8

21

DragonDisk is a decent Amazon S3 GUI client.(http://www.s3-client.com/) They have debian packages for ubuntu. enter image description here

2017561-1
  • 420
Tony
  • 266
20

Not a GUI but I went with s3cmd:

 sudo apt-get -qq install s3cmd

On its first run it asks for your credentials, i.e:

  • access key
  • secret key
  • region (I went for 'eu-west-1')

and creates a ~/.s3cfg where it stores all the things.

On success you can:

  • list all your buckets by

      s3cmd ls
    
  • list the content of a bucket by

      s3cmd ls s3://bucket-name
    
  • fetch a file by

      s3cmd get s3://bucket-name/filename.txt
    
  • upload a file into a bucket by

      s3cmd put LOCAL_FILE s3://BUCKET[/PREFIX]
    

For further information of the command look into:

man s3cmd

or read the online version of the manpage.

k0pernikus
  • 6,115
14

You have s3fs-c. It's a FUSE interface to S3. It'll take a little bit of work getting it up and running, but unlike the other two suggestions, it'll be transparent and act like any other kind of drive. You can save files right to S3. You'll be able to open up an S3 bucket and browse the files in any Linux Utility (ex. Gimp, Libre Office, etc).

In order to use s3fs-c, you'll have to compile it, and the configure it. You can find the instructions in the INSTALL file.

You'll need to install build-essentials, libcurl4-openssl-dev, automake, pkg-config, libxml2-dev and libfuse-dev to build it.

sudo apt-get install build-essentials libcurl4-openssl-dev pkg-config libxml2-dev libfuse-dev automake

then a simple ./configure, make and sudo make install should get the build/install job done.

Evan Carroll
  • 7,526
8

2023 Follow-Up

self-signed certs might become tricky , but you could always use socat to circumvent this

8

Free version of CrossFTP has S3 support and seems to do the job: http://www.crossftp.com Screenshot is from their website. The free version looks the same.

CrossFTP

  • It works for me, but the free version doesn't allow you to set permissions for files you've uploaded. http://www.crossftp.com/features.htm – davidwebster48 Nov 27 '17 at 11:48
  • Don't bother. CrossFTP doesn't work in the newest version (20.04) – Dave Kincaid Jul 13 '20 at 20:41
  • @DaveKincaid - it requires Java to be installed (it doesn't come with Java bundled and uses Recommends in the deb package to require Java, which might not get it installed - depending on what you use to install it), but if you have that, it works fine on my 20.10 installation. – Guss Feb 08 '21 at 16:15
  • Incredibly (given it's Java, linux, and a GUI tool) it works for me on VERSION="22.04.2 LTS (Jammy Jellyfish)" . – Snowcrash Apr 13 '23 at 10:36
3

You can also try minio client aka mc. mc is written in Golang and released under Apache license v2.

mc implements following commands

  ls        List files and folders.
  mb        Make a bucket or folder.
  cat       Display contents of a file.
  pipe      Write contents of stdin to one or more targets. When no target is specified, it writes to stdout.
  share     Generate URL for sharing.
  cp        Copy one or more objects to a target.
  mirror    Mirror folders recursively from a single source to many destinations.
  diff      Compute differences between two folders.
  rm        Remove file or bucket [WARNING: Use with care].
  access    Manage bucket access permissions.
  session   Manage saved sessions of cp and mirror operations.
  config    Manage configuration file.
  update    Check for a new software update.
  version   Print version.

Each command is self documented with examples, you just have to type

mc <command> --help

Hope it helps.

1

a high-performance, POSIX-ish Amazon S3 file system written in Go

FUSE-based file system backed by Amazon S3

  • I second that, though I recommend s3fs-fuse (available from Ubuntu official repo: sudo apt install s3fs). goofys has issues handling large files and can get stuck and freeze your file ops and mount. Otherwise, they both work the same: use the command to mount your bucket and use your favorite file browser. Example with s3fs: s3fs mybucket ~/mnt -o use_path_request_style,url=https://s3.us-east-2.amazonaws.com,profile=myprofile; xdg-open ~/mnt. s3fs doesn't auto detect the region like goofys does and so you have to specify the full URL if you aren't using us-east-1. – Guss Jan 18 '22 at 10:27
1

I am using the free version of Yarkon. It is an HTML based S3 browser.

Ravexina
  • 55,668
  • 25
  • 164
  • 183
mcoh
  • 11