VsftpdIt is the most popular FTP server program in the Linux release version. It is very easy to use and I have spent a long time. Next I will introduce you to the vsftpd installation process, which is very simple!
VsFTPd software packages are included in the latest installation disks of various major release editions. you can install them using the software package management tools provided by the corresponding release editions; of course, you can find the vsftpd software package in the FTP images of various major releases; of course, you can also use the software package management tool to install it online; the vsftpd software package is not big, and it will not take long, two minutes is enough, because this article is a beginner's tutorial. I strongly recommend that you use the software provided by the release version to install it. We do not recommend you compile the source code package by yourself;
If you are using a Fedora or Redhat system, you can use the following command to install it online;
[Root @ localhost ~] # Yum install vsftpd
For debian systems, you can use apt for online installation;
[Root @ localhost ~] # Apt-get install vsftpd
If you are an RPM system, you can also find the vsftpd-xxxx.rpm package to install through the rpm command;
[Root @ localhost ~] # Rpm-ivh vsftpd *. rpm
You can download the source package to install
For example, we download the vsftpd-2.0.3.tar.gz;
[Root @ localhost ~] # Tar zxvf vsftpd-2.0.3.tar.gz
[Root @ localhost ~] # Cd vsftpd-2.0.3
[Root @ localhost ~] # Make; make install
[Root @ localhost ~] # Cp vsftpd. conf/etc
Modify/etc/vsftpd. conf and add the following line to the last line of the configuration file;
Listen = yes
If your system is an RPM package-managed system, you can delete the/etc/xinetd. d/vsftpd file and start the xinetd server;
[Root @ localhost ~] #/Etc/init. d/xinetd restart
Stop xinetd: [OK]
Start xinetd: [OK]
VsFTPd runs in two modes. In RPM package management systems, most of them are developed by Fedora/Redhat. For such systems, there is an xinted server; for non-RPM package management systems, there is generally no xinted. To ensure the consistency of this document, we should not use the xinetd mode, but use the initd running mode to start and manage the server, that is, the independent running mode. What is the xinted and inted modes, you can refer to "use vsFTPd to install a server on a Linux Network"
Through the above introduction, Do you think vsFTPd installation is actually very easy? Hurry up!