scp file.txt [email protected]:/W/
每次我發出這個 SCP 命令時,我都會得到
Connection to 10.57.111.44 closed by remote host.
lost connection.
為什麼會出現這種情況?
答案1
確保您在遠端電腦上使用的使用者帳戶的預設 shell 設定為有效值(例如 /bin/bash)。
若要檢查目前設定的 shell,請使用:
grep <username> /etc/passwd
(該行中的最後一個值是預設 shell)。若要變更此值,請使用:
chsh -s /bin/bash <username>