FileZilla Client software realizes file transfer between windows and ubuntu

Tip: After the article is written, the table of contents can be automatically generated. How to generate it can refer to the help document on the right


foreword

During the development process, it is inevitable to transfer files between Windows and Ubuntu. Sometimes we write code in the sourceInsight software under Windows, and then compile the written code under Ubuntu. To transfer files between the two systems, we need to enable the FTP service. Here are the installation steps:


1. Open the FTP service under Ubuntu

1. Open a terminal and install the FTP service:

sudo apt-get install vsftpd

2. After the service is installed, configure /etc/vsftpd.conf:

sudo you /etc/vsftpd.conf

After opening the vsftpd.conf file, set the following two lines:

local_enable=YES
write_enable=YES
insert image description here

3. After configuring vsftpd.conf, save and exit, and restart the FTP service:

sudo /etc/init.d/vsftpd restart

2. Install FTP client under Windows

1. Download FileZilla Client from the official website

Download link: link
to enter the download page and select: client-windows platform-64-bit installation version
insert image description hereinsert image description here

2. After downloading, install all the way

3. FileZilla software settings

Ubuntu acts as the FTP server, and FileZilla Client acts as the FTP client. Let’s cover up the process of connecting the FTP client to the FTP server under ubuntu.
Site Manager, click: File->Site Manager, create a configuration

(1) Open the site manager, click: File -> Site Manager, create a configurationinsert image description here

(2) After clicking the connection successfully, it will be as follows:insert image description here

insert image description here

4. Transfer files from windows to ubuntu:

Select the receiving path under ubuntu on the right, select the file under windows on the left, and click the right button – upload
insert image description here

After the upload is complete, you will see the file on the right:
insert image description here

Guess you like

Origin blog.csdn.net/m0_56484847/article/details/130842024