Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 571 Bytes

ubuntu_connect_to_remote_ftp_server.md

File metadata and controls

27 lines (21 loc) · 571 Bytes

Connect to a Remote FTP Server from Ubuntu

From the Files App

In the Files App, under Other Locations, you can connect to a remote server by pasting in the address in the bottom bar. Connect to remote file server

From the CLI

Install curlftpfs:

sudo apt install curlftpfs

Create a directory to use:

mkdir ~/RemoteFTP

Connect the remote storage to the created folder:

curlftpfs <user>:<pass>@ftp://<address>:<port> ~/RemoteFTP

Remove the FTP Directory from the CLI

umount ~/RemoteFTP