Arpit Jainep1.hashnode.dev·14 hours agoProject DayDay 9: Two Projects and Networking Concepts Hey everyone! Today marks Day 9 of my journey, and I’m thrilled to share what I’ve been working on. I created two projects and also delved into some networking concepts. Here's a quick rundown of what I ach...Devops
Arpit Jainep1.hashnode.dev·Dec 20, 2024Shell ScriptingDay 8 of Learning DevOps and Day 3 of Shell Scripting Today marks my 8th day of learning DevOps and the 3rd day of diving into shell scripting. I’m excited to share that I’ve completed my basic shell scripting lessons! I also received a suggestion to...4 likes#learningupdates
mr.Kharshils.hashnode.dev·Dec 20, 2024Streamline Linux User Management and Backups with a Simple Shell ScriptIntroduction In this blog post, we'll delve into creating a powerful shell script to streamline user management and file backup tasks within a Linux environment. This script will offer a user-friendly interface for adding, deleting, and modifying use...3 likesLinux
Ansh Balanlinuxfordevops.hashnode.dev·Dec 18, 2024Part 5: Memory Commands, While Loop, and Vim CommandIn this section, we will explore memory management commands, while loops, the Vim text editor, and more. We’ll also create a shell script that ties everything together to monitor disk space. Important Memory Commands 1. free Command The free command ...Devops
Ahammed Basha Shaikday-7-of-100-day-challenge.hashnode.dev·Dec 16, 2024Mastering Linux & Shell ScriptingIntroduction Linux and shell scripting are foundational skills for DevOps professionals, enabling efficient system management and automation. Linux, as a robust and open-source operating system, powers many production systems. Shell scripting extends...Linux
vikas bhaskar vooradidevjourney.co.in·Dec 10, 2024Blue Ocean in JenkinsBlue Ocean is a modern, user-friendly interface for Jenkins. It's designed to improve the CI/CD experience with an easy-to-use design. It makes pipeline creation simple, provides real-time updates, and works smoothly with GitHub and Bitbucket for bet...Jenkins
vikas bhaskar vooradidevjourney.co.in·Dec 9, 2024Multibranch Pipeline in SonarQube Community EditionI'm seeking new opportunities that fit my skills and experience. If you are aware of any openings, please contact me! : vikasvooradi.developer@gmail.com When working with SonarQube Community Edition, it’s important to note that this version does not ...Devops articles
vikas bhaskar vooradidevjourney.co.in·Dec 9, 2024List All Environment Variables Using Jenkins Pipeline ScriptI'm seeking new opportunities that fit my skills and experience. If you are aware of any openings, please contact me! : vikasvooradi.developer@gmail.com Step 1 : Setup Your Jenkins Pipeline Open Jenkins. Navigate to your job configuration or create...Devops
vikas bhaskar vooradidevjourney.co.in·Dec 9, 2024Integrating External ShellCheck plugin with SonarQube for Shell Script Analysis via Jenkins on WindowsI'm seeking new opportunities that fit my skills and experience. If you are aware of any openings, please contact me! : vikasvooradi.developer@gmail.com Introduction SonarQube is a powerful tool for continuous code quality inspection, but the Communi...Devops
Bittu Sharmabittublog.hashnode.dev·Dec 8, 2024Essential Real-Time Shell Scripts for Corporates: A Top 10 ListMonitor System Processes and Memory Usage Script Script #!/bin/bash # Monitor system processes and their memory usage ps aux --sort=-%mem | head -n 10 Explanation ps aux: Lists all running processes. --sort=-%mem: Sorts the processes by memory u...1 like·40 readsshell script