echo -e "127.0.0.1\tvm-01.exemple.com\tvm-01" | sudo tee -a /etc/hosts
echo "PermitRootLogin yes" | sudo tee -a /etc/ssh/sshd_config
echo "net.ipv4.ip_forward=1" | sudo tee -a /etc/sysctl.conf
echo "ssh-rsa AAAAB3... user@hostname" | sudo tee -a /home/user/.ssh/authorized_keys
echo "deb http://archive.ubuntu.com/ubuntu focal main universe" | sudo tee -a /etc/apt/sources.list
echo "/dev/sdb1 /mnt/data ext4 defaults 0 2" | sudo tee -a /etc/fstab
echo "ufw allow 80/tcp" | sudo tee -a /etc/ufw/ufw.conf
echo "alias ll='ls -alF'" | tee -a ~/.bashrc
echo "JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64" | sudo tee -a /etc/environment
echo "Bem-vindo ao servidor!" | sudo tee -a /etc/motd