0

I have a Mac mini at home that I can SSH into and access via VNC (over SSH). What's the best way to transfer files from the Mac mini to my local machine. I assume there is a way to do this in Terminal but I haven't been able to get it to work.

Evan
  • 191

5 Answers5

4

from your local machine:

scp acct_name@your.macmini:/path/to/file local_file
skarface
  • 1,108
2

Connect to your Mac Mini using SFTP with Cyberduck.

Cyberduck SFTP

Gareth
  • 19,080
fideli
  • 14,884
2

One word: ExpanDrive

2

scp is easy and great for quick copies. If you're looking for bigger copying jobs to synchronize directories or multiple files, learn about rsync

Doug Harris
  • 28,397
1

If you want to do it over the Terminal, you could use the scp command-line utility that transfers files over SSH. If you look at the manpage for scp you will find out examples on how to use it.

ayaz
  • 11,970