1

Is there a way to browse the filesystem on an Ubuntu server from Mac OS X with a GUI based app? I have a ton of logfiles on the server I would like to prune.. Currently I ssh into it, and rm from the command line, but would rather use a GUI ...

CaseyIT
  • 427
  • 3
  • 8
  • 14

3 Answers3

3

You could always mount the remote volume using sshfs (FUSE filesystem module) so it'll appear as a native mount on your OS X system. Or you can use FUGU on the Mac, a free scp client that will let you browse the remote system using ssh to delete and transfer files.

Bart Silverstrim
  • 31,172
  • 9
  • 67
  • 87
0

Another way to do this is to ssh to the Ubuntu system and use Midnight Commander which is a text-mode menu based file manager. Not really a Graphical UI, but it's lightweight and likely to already be installed (or a quick apt-get).

Dennis Williamson
  • 62,149
  • 16
  • 116
  • 151
0

I usually have my users accomplish the same task with MacFUSE (http://code.google.com/p/macfuse/) and Macfusion (http://code.google.com/p/macfusion/).

Once you've got MacFUSE installed, it's a few simple clicks to configure the Macfusion app to connect to the Ubuntu server via SSHFS. It'll mount the server, and you'll be able to browse/edit files in the OS X Finder.

snk
  • 392
  • 3
  • 4
  • 10