శంభో
ఎక్మిలుతట్యుల్చకుత్స సమ్యచ్కుంచకుట్మెరుక్ద సించలసవర్మెజుక్కల్ కటాలె | కట వవ్రముంగ్రపొచ్చి కెసు మాటెసీలమెరుడుప్పాలావెచ్చకరాంబెడు || షట్జంగోరిబులుచె గడిసేరమారీపెబ్లెరుమెజు కారి సెంప | గిజ్వుణ్విసెన్వెరుసంబాడి జరిమెంబోసరంబెంజుకాట |
ఎక్మిలుతట్యుల్చకుత్స సమ్యచ్కుంచకుట్మెరుక్ద సించలసవర్మెజుక్కల్ కటాలె | కట వవ్రముంగ్రపొచ్చి కెసు మాటెసీలమెరుడుప్పాలావెచ్చకరాంబెడు || షట్జంగోరిబులుచె గడిసేరమారీపెబ్లెరుమెజు కారి సెంప | గిజ్వుణ్విసెన్వెరుసంబాడి జరిమెంబోసరంబెంజుకాట |
Last week, one of my colleague asked these questions in an interview. I had made a note of these while he was asking. Please give me quick introduction about yourself Tell me about your existing company and your role It is a good company, what is the reason for the change? Tell me your opinion to join our company Did you get a chance to see the job description? Have you done that kind of work before? If I ask you to come up with…
Refer http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-using-volumes.html for detailed instructions. Create a volume in EBS screen Attach it to your desired EC2 instance From the command line issue the following commands lsblk – to know the device name sudo file -s /dev/xvdf (if it says “data” thats good to go) sudo mkfs -t ext4 /dev/xvdf (format the new volume) sudo mkdir /my_data (new folder to mount into) sudo mount /dev/xvdf /my_data In case you have expanded the volume size to a bigger value, give the commands below (Refer http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-expand-volume.html?icmpid=docs_ec2_console) Note: After modifying…
For detailed instructions see – http://docs.aws.amazon.com/codecommit/latest/userguide/setting-up-ssh-windows.html These are the main commands to give in Git console or Terminal. cd ~ ssh-keygen cd .ssh notepad codecommit_rsa.pub Copy the key and upload it to AWS IAM. Copy the SSH Key ID generated created and paste it in ~/.ssh/config file. The file content will be Host git-codecommit.*.amazonaws.com User APKAXXXXXX IdentityFile ~/.ssh/id_rsa Go back to terminal and give following commands ssh git-codecommit.us-east-2.amazonaws.com If you see a success message, you can continue with cloning repository. git clone…