我试图摆脱Windows,现在我在我的第二台PC上有了Ubuntu17.10,但我是Linux的初学者。每天,我需要很多工作与FTP (上传/下载文件)。现在,我正在尝试找到类似于远程管理器(仅适用于Windows)的东西。
为什么这么重要?我只想用键盘做所有的动作,不需要碰鼠标。当我试图通过"FTP链接“菜单与午夜指挥官连接时,会出现错误:"ftpfs:用户匿名登录错误”。Filezilla只使用鼠标,所以对我来说不是一个选项。
您建议使用什么应用程序来进行FTP上载/下载?
发布于 2018-01-06 18:47:41
我认为午夜指挥官将满足您的需要,因为它需要终端,并为FTP客户端提供双/双面板。
但是,它有一个局限性,这是当今严重的。它不支持FTPS (基于SSL的FTP)。有一个关于这一点的3个岁小虫。
对于普通FTP,可以使用Left (或Right)和FTP Link,语法如下(来自F1帮助):
┌───────────────────────────── Help ─────────────────────────────┐
│FTP File System │
│ │
│The FTP File System (ftpfs) allows you to manipulate files on │
│remote machines. To actually use it, you can use the FTP link │
│item in the menu or directly change your current directory │
│using the cd command to a path name that looks like this: │
│ │
│ftp://[!][user[:pass]@]machine[:port][remote-dir] │
│ │
│The user, port and remote-dir elements are optional. If you │
│specify the user element, the Midnight Commander will login to │
│the remote machine as that user, otherwise it will use │
│anonymous login or the login name from the ~/.netrc file. The │
│optional pass element is the password used for the connection. │
│Using the password in the VFS directory name is not │
│recommended, because it can appear on the screen in clear text │
│and can be saved to the directory history. │
│ │
└────────────────────────────────────────────────────────────────┘对于SFTP (FTP ),您应该在语法上使用SFTP link:
┌───────────────────────────── Help ─────────────────────────────┐
│SFTP (SSH File Transfer Protocol) filesystem │
│ │
│The SFTP file system is a network based file system that allows │
│you to manipulate the files in a remote machine as if they were │
│local. │
│ │
│To connect to a remote machine, you just need to chdir into a │
│special directory which name is in the following format: │
│ │
│sftp://[user@]machine:[port]/[remote-dir] │
│ │
│The user, port and remote-dir elements are optional. If you │
│specify the user element, the Midnight Commander will try to │
│login on the remote machine as that user, otherwise it will use │
│your login name. port - specify the port used by remote server │
│(22 by default). If the remote-dir element is present, your │
│current directory on the remote machine will be set to this │
│one. │
└────────────────────────────────────────────────────────────────┘在GUI会话中,您可以尝试双重指挥官 (总指挥官的克隆),它可以用sudo apt-get install doublecmd安装。它有FTP/FTPS和SFTP客户端,可以从Network->FTP访问。
https://askubuntu.com/questions/992992
复制相似问题