ABA. B Satya Jaideepinsatyajai.hashnode.dev路Jul 16 路 6 min read馃殌 How to Create, Attach, Format, and Mount an Amazon EBS Volume on an EC2 Ubuntu InstanceLearn how to create an Amazon EBS volume, attach it to an EC2 instance, format it with the ext4 filesystem, mount it, and configure it for persistent storage. This step-by-step guide is perfect for be00
ABA. B Satya Jaideepinsatyajai.hashnode.dev路Jul 10 路 5 min readShell Scripting + Makefile Automation for Docker: Simplify Your Docker WorkflowWhy Use a Makefile? When working with Docker projects, you'll often execute commands like: docker compose build docker compose up -d docker compose down docker system prune -f Typing these repeatedly00
ABA. B Satya Jaideepinsatyajai.hashnode.dev路Jul 9 路 6 min readMastering AWS EC2 Automation with Shell Scripting: Create EC2 Instances Using AWS CLILearn how to automate Amazon EC2 instance creation using Bash Shell Scripting and AWS CLI. This step-by-step guide covers prerequisites, script explanation, execution, screenshots, and best practices.00
ABA. B Satya Jaideepinsatyajai.hashnode.dev路Jul 9 路 6 min readAutomating Dockerized Django & Flask Deployments with Shell Scripting on AWS EC2 Introduction Deploying applications manually is a great way to learn, but it quickly becomes repetitive and error-prone. Every deployment usually involves multiple commands: Cloning the repository I00
ABA. B Satya Jaideepinsatyajai.hashnode.dev路Jul 2 路 5 min readShell Scripting in Linux: User Creation, Loops, and Conditional StatementsWhat is Shell Scripting? A shell script is a text file containing Linux commands executed by the shell. Every shell script starts with: #!/bin/bash This line is called the Shebang. It tells Linux to 00