You are on page 1of 1

FTP Installation (Ubuntu/Xubuntu/lubuntu)

_______________________________
sudo apt-get install vsftpd -y
sudo nano /etc/vsftpd.conf
write_enable=YES #remove hash tag "#"
ctrl + x
y
Press Enter
sudo systemctl restart vsftpd
sudo systemctl status vsftp
ls
less onelabsoho-confg
q
______________________________________

TFTP Installation (Ubuntu/Xubuntu/lubuntu)


sudo apt-get install -y tftpd-hpa
sudo mkdir /tftp
sudo chmod 777 /tftp
sudo chown tftp:tftp /tftp
sudo nano /etc/default/tftpd-hpa
TFTP_USERNAME="tftp"
TFTP_DIRECTORY="/tftp"
TFTP_ADDRESS=":69"
TFTP_OPTIONS="--secure --create"
ctrl + x
y
Press Enter
sudo systemctl restart tftpd-hpa.service
sudo systemctl status tftpd-hpa.service
ls /tftp
less /tftp/onelabsoho-confg
q
________________________________
Secure Copy Error
______________________

%SSH-3-NO_MATCH: No matching kex algorithm found: client diffie-hellman-group-


exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 server
curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-
nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-
group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group14-sha256

You might also like