PureftpdIt is a fast, high-quality, and fully functional ftp server. The most important thing is that it supports setting the default encoding of the client. Pureftpd is very powerful and easy to use. Today we will teach you a skill: start Pure-FTPd in the background
I started "pure-ftpd" from an X terminal and the server responded normally. But as soon as the terminal is turned off, the server stops running.
This is the consequence of relying on shell. Your shell is set to close all background tasks when you exit. You can change the shell option (probably by using the 'set' command) or use the 'dislow' keyword to separate background tasks. as another option, you can add the-B Option to start pure-ftpd so that it can be separated at startup.
- /Usr/local/sbin/pure-ftpd-B
Through the description and code analysis of the article, you must have mastered Pure-FTPd in the background. I hope this article will be useful to you!