# Installationsanleitung

Installation mit folgenden Befehlen:

```bash
#update package list
sudo apt update

#install vsftpd daemon & service
sudo apt install vsftpd

#copy original configuration file
sudo cp /etc/vsftpd.conf /etc/vsftpd.conf.orig

#configure firewall
sudo ufw allow 20,21,22,990/tcp
sudo ufw allow 40000:50000/tcp
sudo ufw enable
```