3

What are some methods for transferring files to and from Amazon EC2 instances. I'm looking for solutions / tools for editing files as well as copying files to EC2 instances from both Mac and Windows.

For example, what are some solutions for mounting a drive from an instance locally?

Generally, what other methods are out there?

user36335
  • 131
  • 2

2 Answers2

2

If the EC2 instance is running, you can use the usual set of tools you'd use for a non-virtual instance (e.g. scp using WinSCP if it's a *nix machine from a Windows desktop).

caelyx
  • 699
  • 3
  • 7
0

caelyx is correct, provided your EC2 instance has SSH setup on it. Depending on what you're doing, you may want to look at Elastic Block Storage (EBS) -- your EBS storage can be treated like any other block-level device so you can mount it like you would a hdd from your Mac, another server, etc.

http://aws.amazon.com/ebs/

gravyface
  • 13,957
  • 19
  • 68
  • 100