Raspberry-Pi

Arch-ARM 上的 SFTP 問題

  • November 12, 2018

我在 Raspberry Pi 3 上安裝了 Arch ARM 並創建了一個新使用者。幾乎一切正常;我已經複製了我的公鑰/私鑰,並且可以 ssh 到 Raspberry Pi 上的 Arch。

注意我只是嘗試在我的本地網路上連接。

但是我似乎無法通過 FTP 進入伺服器。我在 macOS 上使用最新的 Filezilla,而 Arch ARM 是最新的。我在 Filezilla 中使用 SFTP,其設置與我在 Pi 上連接 Raspbian 時使用的設置相似。

以下是連接嘗試的消息日誌

Status:         Connecting to archpi.local...
Status:         Connected to archpi.local
Error:          Received unexpected end-of-file from SFTP server
Error:          Could not connect to server
Status:         Waiting to retry...
Status:         Connecting to archpi.local...
Response:   fzSftp started, protocol_version=8
Command:    open "XXX@archpi.local" 22
Command:    Pass: *******
Status:         Connected to archpi.local
Error:          Received unexpected end-of-file from SFTP server
Error:          Could not connect to server

經過大量搜尋後,我找到了一個可以更改Subsystem sftp /usr/lib/openssh/sftp-serverSubsystem sftp internal-sftpin的解決方案/etc/ssh/sshd_config,這似乎已經解決了問題。

usr/lib/openssh/sftp-serverArch中沒有!

引用自:https://unix.stackexchange.com/questions/475938