SCP remote to local

David Y.

The Problem

How do I use scp to copy a folder from a remote server to my local machine?

The Solution

When using scp, the first path will be the source, and the second will be the destination. Therefore, to copy from remote to local, we specify a remote path followed by a local path, as below:

scp -r user@remote:/path/to/folder /home/user/

The -r flag is used to recursively copy all contents of the directory, similar to how you would use -r with the rm or cp commands locally.

The scp command performs a copy operation over SSH. Depending on how your SSH connection to the remote server is configured, you may be asked for a password for the remote user or a passphrase for your local SSH key. If this is your first time connecting to the remote server, you will be asked whether to trust its fingerprint.

To find out more about using scp, type man scp into your terminal.

Loved by over 4 million developers and more than 90,000 organizations worldwide, Sentry provides code-level observability to many of the world’s best-known companies like Disney, Peloton, Cloudflare, Eventbrite, Slack, Supercell, and Rockstar Games. Each month we process billions of exceptions from the most popular products on the internet.

Share on Twitter
Bookmark this page
Ask a questionJoin the discussion

Related Answers

A better experience for your users. An easier life for your developers.

    TwitterGitHubDribbbleLinkedinDiscord
© 2024 • Sentry is a registered Trademark
of Functional Software, Inc.