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.

link|improve this question

feedback

5 Answers

up vote 2 down vote accepted

Connect to your Mac Mini using SFTP with Cyberduck.

Cyberduck SFTP

link|improve this answer
feedback

from your local machine:

scp acct_name@your.macmini:/path/to/file local_file
link|improve this answer
scp++ (I can't just write "scp++" so I had to add this text as filler) – macek Feb 5 '10 at 22:34
feedback

One word: ExpanDrive

link|improve this answer
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.