Azure Virtual Machine Sizes
- Azure VM with Family Series Refer Here
- VM Selector by Azure Refer Here
- VM Sizes Refer Here
- Azure vm size naming convention Refer Here
Azure Linux Virtual Machine Creation
- Credentials:
- We can generate the keys in our laptop or ask azure to create a key pair and give us the private key.
- You can use username and password
- Linux:
- Remote Connection: SSH
- Softwares for Connection:
- Windows 10/11, Any Linux/Mac: You have inbuilt ssh
- Install Git Bash/Putty
- Creating Azure Linux vm
- SSH Command
- With username and password
ssh username@ipaddress
- with username and key
ssh -i <path to key> username@ipaddress
- With username and password