Substituição do FAR-manager por FTP

1

Estou tentando me livrar do Windows e agora tenho o Ubuntu 17.10 no meu segundo computador, mas sou iniciante no Linux. Todos os dias eu preciso trabalhar muito com FTP (upload / download de arquivos). Agora estou tentando encontrar algo parecido com FAR-manager (somente Windows).

Por que isso é tão importante? Eu quero fazer todas as ações com apenas o teclado , sem qualquer necessidade de tocar no mouse. Quando tento ligar-me ao Midnight Commander através do menu "FTP link", aparece o erro: "ftpfs: Login incorrecto para o utilizador anónimo". O Filezilla trabalha apenas com o mouse, então não é uma opção para mim.

Qual aplicativo você recomendaria para uploads / downloads de FTP?

    
por a153 06.01.2018 / 17:48

1 resposta

1

Acho que o Midnight Commander atenderá às suas necessidades já que precisa de terminal e fornece ao cliente FTP painéis duplos / duplos como FAR.

Mas tem uma limitação que é séria hoje em dia. Não suporta FTPS (FTP over SSL). Há um bug de 3 anos sobre isso.

Para FTP simples, você pode usar Left (ou Right ) e FTP Link com a seguinte sintaxe (da ajuda 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.                      │
│                                                                │
└────────────────────────────────────────────────────────────────┘

Para SFTP (FTP sobre SSH) você deve usar SFTP link com sintaxe:

┌───────────────────────────── 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.                                                            │
└────────────────────────────────────────────────────────────────┘

Na sessão da GUI, você pode tentar o Double Commander (clone do Total Commander), ele pode ser instalado com sudo apt-get install doublecmd . Tem cliente FTP / FTPS e SFTP, acessado de Network->FTP .

    
por N0rbert 06.01.2018 / 19:47