Difference between revisions of "VSFTP"
Jump to navigation
Jump to search
To Software
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 | ||
== 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
- Update repositories
sudo apt update
- Install vsftpd
sudo apt install vsftpd
- Start vsftpd
sudo systemctl start vsftpd
- Optionally, start vsftpd at Ubuntu startup
sudo systemctl enable vsftpd