DKDinesh khadeinday-01-of-90daysofdevops.hashnode.dev·Oct 28, 2024 · 2 min readAutomate Backup Scripts in Linux with Cron and CrontabIn Linux, cron and crontab are essential tools for scheduling automated tasks like backups, system updates, and log management. Let’s explore how to leverage cron and crontab to automate a backup script effectively. 1. What is Cron? Cron is a backgr...00
DKDinesh khadeinday05-of-90daysofdevops-journey.hashnode.dev·Oct 26, 2024 · 2 min readShell Scripting For Devops :Shell : Shell is a utility to communicate with kernel . I am using two types of shell 1. sh 2.bash Script: A Shells are tools that let us interact with the kernel. I use two types of shells: 1. sh and 2. bash sh: This is a type of shell used for wri...00
DKDinesh khadeinday05-of-90daysofdevops-journey.hashnode.dev·Oct 23, 2024 · 2 min readVolume MountHello Everyone's today i am learning about a new concept of Linux OS that is volume Mount . What is volume ? Volume means a free storage you can create it for your data store in it. create volume in AWS EC2: Create new instance . Select size of volum...00
DKDinesh khadeinday05-of-90daysofdevops-journey.hashnode.dev·Oct 19, 2024 · 1 min readI Learning some new in Linux Advance :1.scp commnad : secure copy It use to securely transfer files between local host and remote host or between two remote hosts over SSH. scp -i scp /path/to/local/file username@remote_host:/path/to/remote/directory 2.update : This is package management...00
DKDinesh khadeinday05-of-90daysofdevops-journey.hashnode.dev·Oct 15, 2024 · 1 min readAdvance Linux for DevopsUser Management Firstly some basic commands in user management whoami = check user su= switch user sudo su = switch into root directory exit = exit from directory or user /= root Move to the Advance commands create new user : sudo useradd -m ...00