Chris Holcombenullvoid.hashnode.dev·Dec 20, 2024Command & Conquer: Automating with Shell Scripts (Part 4)Automate Everything: An Introduction to Linux Shell Scripting Welcome to Part 4 of the Command & Conquer series! You’ve mastered the essentials, file management, processes, and networking now it’s time to put those skills together with shell scriptin...Command & ConquerLinux
Ahammed Basha Shaikday-10-of-100-days-challenge.hashnode.dev·Dec 19, 2024Shell Scripting and Linux Interview QuestionsDay 9 of 100 Days of DevOps Challenge: Preparing for Shell Scripting and Linux Interviews Mastering shell scripting is a core skill for DevOps engineers, but excelling in interviews requires a clear understanding of both foundational and advanced top...AWS
Ahammed Basha Shaikday-9-of-100-days-challenge.hashnode.dev·Dec 18, 2024Mastering Shell Scripting for DevOps Part-2Shell scripting is an indispensable skill for DevOps professionals, streamlining automation and ensuring efficient server management. In Day 9 of our 100 Days of DevOps Challenge, we dive deep into advanced shell scripting concepts that can elevate y...Devops
Ahammed Basha Shaikday-8-of-100-days-challenge.hashnode.dev·Dec 17, 2024Mastering Shell Scripting for DevOpsIntroduction Shell scripting is a foundational skill for DevOps engineers, enabling task automation and efficient system management. This post outlines key steps to master shell scripting, along with practical use cases in the DevOps ecosystem. Why S...shell scripting
Shikhar Shuklashikhar99.hashnode.dev·Nov 27, 2024Linux Basics: A Comprehensive One-Line Guide to Essential ConceptsLinux is a cornerstone of the IT world, powering servers, desktops, and embedded devices. Whether you're a beginner or brushing up, here's a concise guide covering key Linux concepts with commands to get started. 1. What is Linux? Linux is an open-s...Linux
Peter Garisomethingsomethingdevde.hashnode.dev·Nov 26, 2024Installing Metasploitable3 in VirtualBoxThis installation was done on virtual box running on Ubuntu 24.04 as the host system. Prerequisite softwares VirtualBox A virtualization platform that allows you to create and manage virtual machines on your host system. sudo apt update sudo apt ins...bash script
Shaik Mustafalinux-series.hashnode.dev·Nov 23, 202410 Bash scripts that every beginner DevOps engineer can use to automate workflows1. Update and Upgrade System Packages Scenario: Your server needs to be updated with the latest security patches.Script: #!/bin/bash echo "Updating system packages..." sudo apt update && sudo apt upgrade -y echo "System updated successfully!" What i...91 likes·308 readsmustafa
DEVESH NEMADEdeveshnemade.hashnode.dev·Nov 21, 2024Automating cron Service Backup and Restart with BashThis script automates the backup, update, and restart process of the cron.jar application on a Linux server. It involves creating a backup of the current JAR file, downloading a new version from a remote SFTP server, stopping the current process, rep...bash script
DEVESH NEMADEdeveshnemade.hashnode.dev·Nov 21, 2024Automating Log Analysis for Efficient Exception Monitoring in DevOpsHow to Automate Log File Processing and Exception Extraction for Faster Troubleshooting and System Monitoring In DevOps, effective log monitoring and error detection are crucial for maintaining system health. This script automates the process of anal...bash script
Rudresh Singhbash-rudresh.hashnode.dev·Nov 13, 2024Bash_mid_AdvWe have already covered the variables — but just for refreshers… 1. Variables Basics: #!/bin/bash # Variable assignment name="Alice" echo "Hello, $name!" # Read input from the user echo "Enter your name:" read user_name echo "Hello, $user_name!" 2...Bash