SETUP PROCESS:
INITIAL USER:
adduser myuser
passwd myuser
gpasswd -a myuser wheel
su - myuser
mkdir .ssh
chmod 700 .ssh
vi .ssh/authorized_keys
chmod 600 .ssh/authorized_keys
SSH
Made the following modifications to /etc/ssh/sshd_config
:
Port 2222
PermitRootLogin no
MaxAuthTries 6
MaxSe...
Rsync and LFTP are wonderful tools for synchronizing files. Here are various examples.
LFTP
NOTE: If certificate errors prevent you from connecting to a trusted server, you can disable these errors permanently: echo “set ssl:verify-certificate false” >> ~/.lftprc
To connect to a server an...