# Create Ec2 linux and set users for remote access
1. launch EC2 linux
2. connect and linux with admin : sudo su
3. add user
`adduser username`
4. set password
`passwd username`

5. Enable username/password login
`sudo vi /etc/ssh/sshd_config`

6. restart server
`sudo reboot`
7. Add user to sudoers
`usermod -aG wheel username`