Difference between revisions of "VSFTP"

From Got Opinion Wiki
Jump to navigation Jump to search
m (Created page with '== vsftp links == [http://vsftpd.beasts.org/ vsftpd] home [http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch15_:_Linux_FTP_Server_Setup Linux FTP Server Setup]…')
 
m (added install on Ubuntu section)
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
[http://vsftpd.beasts.org/ vsftpd] home
[http://vsftpd.beasts.org/ vsftpd] home


[http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch15_:_Linux_FTP_Server_Setup Linux FTP Server Setup]
== setup vsftp on Ubuntu 18.04.6 LTS ==
 
# Update repositories <code>sudo apt update</code>
# Install vsftpd <code>sudo apt install vsftpd</code>
# Start vsftpd <code>sudo systemctl start vsftpd</code>
# Optionally, start vsftpd at Ubuntu startup <code>sudo systemctl enable vsftpd</code>


<center>[[Software|To Software]]</center>
<center>[[Software|To Software]]</center>

Latest revision as of 09:59, 4 February 2022

vsftp links

vsftpd home

setup vsftp on Ubuntu 18.04.6 LTS

  1. Update repositories sudo apt update
  2. Install vsftpd sudo apt install vsftpd
  3. Start vsftpd sudo systemctl start vsftpd
  4. Optionally, start vsftpd at Ubuntu startup sudo systemctl enable vsftpd
To Software