This configuration starts by creating a pair of keys and handling them on linux. This is good also for tasks like connecting to a remote machine in the cloud. At the end, we also go through using this for github (so adding the public key to a github account). Add SSH key To work with github or connecting to a remote …
Read MoreAnswer and try out. File permissions Say you have a file called "myfile.txt". Write the command to make it readable and writable by the owner, but only readable by everyone else. You have a shell script named "backup.sh". Write the command to make it executable by the owner only. There's a file …
Read MoreUsing basic commands Answer and try out: What command would you use to display your current location in the file system? Which command shows the list of files and directories in your current location? What command would you use to create a new directory called "projects"? Which command allows you to change …
Read MoreThe first (and easier) option is: create a repository in github clone it to your local computer In this way, all your remote definitions will be configured automatically. Create a new repository in github login to github. This is changing from time to time, and my involve configuring a phone as a secondary …
Read MoreCreating a new key-pair I am using a Windows-11 Professional os. OpenSSH client is included by default in Windows 11. This is how I'll create a kwypair: Try to see if the .ssh directory exists, and there are any previous keys there: 1dir ~/.ssh If the directory is not there, it will be created when you create your …
Read MoreHere are some usefull linux links: Virtualization Tools VmWare Workstation/Fusion (free for personal use) VmWare is now owned by Broadcom You'll have to create a Broadcom account (free) main link Linux Images or prepared disks Easiest if you have Windows/Workstation: Download a complete ready vmdk file from osboxes ( …
Read MoreVPC for our EKS We'll be creating a VPC that spans over 2 AZs, and that has 4 subnets, 2 in each AZ For each AZ we'll have a private+public subnet, so that if the cluster will initiate a load balancer, it can use target pods in both AZs. VPC Components: VPC A new internet gateway (IGW). Don't forget to attach it to the …
Read MoreThe following post will take you through a detailed and explained creation of aws application load balancer. What we're going to create We'll describe the underlying VPC (but will not take you to the details of creating it) The basic network We'll create a VPC with: 2 public subnets, one in each AZ used (a, b): …
Read MoreWhat we're going to do We are going to create our first lambda function Our function will get 3 numbers, and decide if these can be lengths of a triangle. We are going to use the aws console We'll write the code in Python programming language We'll write a handler and understand its usage and parameters Prerequisites …
Read More