Sftp

如何通過 sftp 連接到 Midnight Commander 上的非標準埠?

  • December 18, 2021

在 Midnight Commander 中,可以使用以下命令與遠端電腦建立 SFTP 連接:

cd #sh:yourusername@example.com:/home/username/

當遠端機器使用非標準埠時,如何做到這一點?

每當您想對 ssh 使用非預設設置時,請在~/.ssh/config. 通過這種方式,您可以呼叫ssh myalias,或在後台呼叫一些應用程序ssh myalias,而不必擔心如何傳遞諸如非預設埠、不同使用者名等設置。

Host foo
HostName example.com
Port 2222
User yourusername

然後在午夜指揮官中:cd #sh:foo:

mc在各自的“側邊菜單”中支持“Shell 連結”。這用於 ssh建立fish連接(通過SH ell文件系統傳輸文件)。

截屏

mc幫助/手冊頁

幫助截圖

AFAIK在通過跳轉伺服器時,沒有與-Jssh 選項等效的選項。

其他參考

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