1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

soracom napterでscpコマンドを使い、ファイルを送受信する時のメモ

Last updated at Posted at 2023-10-26

概要

作業時の備忘録です。普通に考えれば当たり前の内容ですが、やった時10分くらい詰まったのでメモ。

やりたかったこと

  • SORACOM Napterで接続したデバイスで, GithubとSSHでリポジトリにアクセスしたかった
  • デバイス上でssh-keygenしたが、Githubに公開鍵を設定する方法をブラウザ上で記載する以外に知らなかった
  • sshが使えるのだからscpも使えるはずなので、公開鍵をローカルマシンに送信し、自分のアカウントに公開鍵を設定したい。

詰まったこと

  • scpコマンドをSORACOM Napterの情報に対して、どのように実行するのか。

メモ

以下のコマンドでデータ移動。今回は接続先のファイルをローカルマシンに送信することを想定。

A,B,C, D, Eは以下に記載されている内容を入れる。
scp -P A(※1) B@C:D E

sshは小文字のpでポート指定するが、scpでは大文字のPで指定する。

A: リモートオンデマンドに記載されてるポート番号(下の画像の青枠矩形に記載されている)
B: 接続先ユーザー名(任意)
C: 接続先ホスト(SORACOMのリモートオンデマンドに記載されている情報, 下の画像の赤枠矩形に記載されている。)
D: コピー元のファイルパス(ローカルに送信したいファイルが存在するパス)
E: コピー先のファイルパス(ファイルをコピーしたいパス)

指定情報記載画像.png

例(something_file.txtをローカルのDocumentsフォルダで受け取る)

scp -P 12345 user@xx-xxx-xxx-xxx.napter.soracom.io:/home/user/something_file.txt ~/Documents/

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?