wdmycloudでscpを使用できません

wdmycloudでscpを使用できません

ルートまたは私が追加した他のユーザーとして自分のクラウドに正常にログインできます。scpイメージをマイフォルダに送信するには、このコマンドを使用する必要があります。引き続きパスワードを聞いてパスワードが正しいことを知りながらもパスワードが間違っていたそうです。[email protected]私はローカルコンピュータですが、ソースを識別する必要があります。それ以外の場合は、「該当するファイルやディレクトリはありません」と表示されます。また、Benは大文字でも小文字でも、違いはありません。

WDMyCloud:~# scp -v [email protected]:/Users/***/Desktop/Apple.jpg [email protected]:/DataVolume/shares/Ben
Executing: /usr/bin/ssh '-x' '-oClearAllForwardings=yes' '-n' '-v' '-l' 'Ben' '--' '192.168.1.20' 'scp -v' '/Users/Ben/Desktop/Apple.jpg' '[email protected]:/DataVolume/shares/Ben'
OpenSSH_6.0p1 Debian-4, OpenSSL 1.0.1m 19 Mar 2015
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: Connecting to 192.168.1.20 [192.168.1.20] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: identity file /root/.ssh/id_rsa type -1
debug1: identity file /root/.ssh/id_rsa-cert type -1
debug1: identity file /root/.ssh/id_dsa type -1
debug1: identity file /root/.ssh/id_dsa-cert type -1
debug1: identity file /root/.ssh/id_ecdsa type -1
debug1: identity file /root/.ssh/id_ecdsa-cert type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_6.2
debug1: match: OpenSSH_6.2 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.0p1 Debian-4
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server host key: RSA 33:44:49:5a:89:04:4e:92:7c:6a:ed:f7:d8:1d:24:5a
debug1: Host '192.168.1.20' is known and matches the RSA host key.
debug1: Found key in /root/.ssh/known_hosts:4
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /root/.ssh/id_rsa
debug1: Trying private key: /root/.ssh/id_dsa
debug1: Trying private key: /root/.ssh/id_ecdsa
debug1: Next authentication method: keyboard-interactive
Password:

(Now I enter it and it refuses)

Password:
debug1: Authentications that can continue: publickey,keyboard-interactive
Password:
debug1: Authentications that can continue: publickey,keyboard-interactive
Password:
debug1: Authentications that can continue: publickey,keyboard-interactive
debug1: No more authentication methods to try.
Permission denied (publickey,keyboard-interactive).
WDMyCloud:~# 

ベストアンサー1

簡単に言えば、scp作業する2つのIPアドレスを指定すると、いくつかの興味深い作業が行われます。ソースまたはターゲットがコマンドを実行するマシンの場合、パスのscp1つはローカルでなければなりません。 MyCloudを使用している場合は、以下を試してください。

WDMyCloud:~# scp [email protected]:/Users/***/Desktop/Apple.jpg /DataVolume/shares/Ben

またはローカルコンピュータにいる場合:

LocalComputer:~# scp /Users/***/Desktop/Apple.jpg [email protected]:/DataVolume/shares/Ben

それでも、この場合何が起こるのか気になる場合は、確認しExecuting:てくださいscp -v

Executing: /usr/bin/ssh '-x' '-oClearAllForwardings=yes' '-n' '-v' '-l' 'Ben' '--' '192.168.1.20' 'scp -v' '/Users/Ben/Desktop/Apple.jpg' '[email protected]:/DataVolume/shares/Ben'

興味深い点の1つは、sshインタラクティブシェルの代わりに単一のコマンドをすぐに実行できることです。ここで何が起こるのかは、ファイル自体をコピーするのではなく、scp192.168.1.20にコピーを処理するように要求することです。これは、次のコマンドを実行したのと同じです。

WDMyCloud:~# ssh [email protected]
Password: [password to Ben@LocalComputer goes here]
LocalComputer:~$ scp /Users/***/Desktop/Apple.jpg [email protected]:/DataVolume/shares/Ben
Password: [password to root@WDMyCloud goes here]
LocalComputer:~$ exit

なぜこのようなことをするのかscp?これは、次の場合に適した効率測定です。

LocalComputer:~$ scp [email protected]:/path/to/Apple.jpg [email protected]:/DataVolume/shares/Ben

この場合、ファイルはあるリモートコンピュータにあり、別のリモートコンピュータにコピーしようとします。ローカルコンピュータがコピーを実行すると、コピープロセス全体でそのコンピュータが使用され、あるリモートコンピュータから別のコンピュータにビットが転送されます。一方のリモコンを別のリモコンに直接接続する方が効率的です。

おすすめ記事