リモートAWSインスタンスからローカルインスタンスにディレクトリをコピーしようとしています。
この 質問 のユーザーとは異なり、notをリモートインスタンスにSSH接続しました
次のコマンドを実行するだけです。
scp -r user@remotehost:/path/to/dir/on/remote/instance /C:/Users/example/user/path/to/destination
サーバーのパスワードを入力します
次に、エラーメッセージが表示されます。
/C:/Users/example/user/path/to/destination: No such file or directory
ローカルインスタンスパスに関連する
なぜこれが起こっているのか誰かが何か考えを持っていますか?
編集:ローカルWindowsインスタンスでGitbashを使用する
よろしくお願いしますジョン
WindowsのGitBashでは、ディスク名は小文字であり、コロンはありません。
したがって、代わりに:
/C:/Users/example/user/path/to/destination
Git Bashでは、次を使用する必要があります。
/c/Users/example/user/path/to/destination
または、WSL(WindowsでLinuxプログラムを実行するための推奨される方法)では、次のようにします。
/mnt/c/Users/example/user/path/to/destination