Day-12: LINUX &GIT-GITHUB CHEAT SHEETFile Commands ⦁ ls --> Directory listing. ⦁ ls -al --> Formatted listing with hidden files. ⦁ ls *.sh --> list all the files having .sh extension. ⦁ ls -i --> list the files and directories with index numbers inodes. ⦁ ls -d */ --> list only director...Apr 11, 2023·6 min read
Day-07: Understanding package manager and systemctl.What is a package manager in Linux? A package manager is a software tool used in Linux and other Unix-based operating systems to manage the installation, removal, and upgrading of software packages. The package manager can be a graphical application ...Mar 30, 2023·3 min read
Day-06: File Permissions and Access Control Lists.In Linux, file permissions determine who can access a file or directory, and what actions they can perform on it. for example: Create a simple file and do ls -ltr to see the details of the files. There are three types of permissions: read (r), write...Mar 30, 2023·2 min read
Day-05:Advanced Linux Shell Scripting for DevOps Engineers with User management.Write a bash script createDirectories.sh that when the script is executed with three given arguments (one is directory name and second is start number of directories and third is the end number of directories ) it creates specified number of director...Mar 28, 2023·2 min read
Day-04:Basic Linux Shell Scripting for DevOps Engineers.What is Linux Shell Scripting ? Linux shell scripting is a way to automate tasks in a Linux operating system by writing scripts in a shell language, such as Bash. Shell scripting can help you save time and increase productivity, and it is used for a ...Mar 27, 2023·2 min read
#Day02 -Linux Operating SystemLet's learn about the most popular Linux Operating System and some of it's basic commands.Mar 24, 2023·2 min read
Getting started with DevOpsWhat is DevOps? DevOps is a methodology that promotes collaboration between the development team and the operations team to meet the deadline and avoid delay. This allows deploying code to production faster and in an automated way. Automation Automat...Mar 23, 2023·2 min read