Sujeet Vishvkarmasujeet-vishvkarma.hashnode.dev路Dec 5, 2024Linux Commands馃惂 Linux Command Cheat Sheet: Essential Commands with Examples Linux is a versatile and powerful operating system. The command line is your gateway to mastery. Here's your cheat sheet, packed with must-know commands and real-world examples, sprinkled...DiscussLinux
Pulkit Yadavlinux-fundamental.hashnode.dev路Dec 5, 2024Essential Kubernetes Commands with Kind for DevOpsIntroduction Kubernetes is a powerful tool for managing applications inside containers. If you're new to Kubernetes or want to practice, using tools like Kind (Kubernetes in Docker) can make it easier to set up and learn. In this blog, we鈥檒l go over ...Discuss路1 like#90daysofdevops
Ankita Lunawatcloudhub2295.hashnode.dev路Nov 30, 2024Let's Dive into Shell Scripting!A shell script is a computer program intended to run by a Unix-like shell, which is a command-line interpreter; it is essentially a text file containing a series of commands that the shell interprets and executes. Why Use Shell Scripts? Shell scripts...Discussshell script
Manish ShivanandhanforfreeCodeCampfreecodecamp.org路Nov 27, 2024How Hackers Use Command Execution to Break Into聽SystemsWhen learning about cybersecurity, you鈥檒l quickly realize that some vulnerabilities are more dangerous than others. One of the most serious ones is called command execution. Hackers use it to run harmful commands on a system, gain access to sensitiv...Discuss#cybersecurity
Ranindu Abeyratneblog.ranindu.com路Nov 25, 2024Understanding the Basics of TerraformAn open source infrastructure as code (IaC) software tool that allows DevOps engineers to programmatically provision the physical resources an application requires to run. What is Terraform? Terraform is an open source and declarative tool for infras...Discuss路7 likesTerraform
Lim Woojaejaylog.hashnode.dev路Nov 13, 2024[React.js] Error: GH013: Repository rule violations foundAbout Error This error occurred when I git push -u origin main to push my commits. The reason was because I wrote personal access token in the index.html file. I copied and pasted on there because it鈥檚 something I can never remember, but I will need...DiscussFront-endReact
Kanav Gathe90-days-of-devops-kanav.hashnode.dev路Nov 6, 2024馃惂 Linux & Git-GitHub Command Cheatsheet馃搨 Linux File System Navigation Basic Navigation CommandDescriptionExample pwdPrint working directorypwd lsList files and directoriesls -la cdChange directorycd /home/user mkdirCreate directorymkdir new_folder rmdirRemove empty directoryrm...Discuss路5 likesGit Commands
Anurag Hatoleanuraghatole.hashnode.dev路Nov 2, 2024kubectl - Essential CommandsKubernetes is an essential tool for modern cloud-native applications, and kubectl is the command-line interface for interacting with Kubernetes clusters. This guide covers various kubectl commands categorized by functionality, providing you with a so...Discuss路4 likes路58 readsKubernetes
Fernando Bezerrafersales.hashnode.dev路Oct 31, 2024Como criar um Comando Artisan personalizado no LaravelPasso 1 Primeiramente, vamos criar o comando usando o console Artisan ou o terminal. Para isso, utilize o comando make:command do Artisan. Este comando criar谩 uma nova classe de comando no diret贸rio app/Console/Commands. php artisan make:command chec...DiscussLaravel
Aditya Gadhaveadityag7678.hashnode.dev路Oct 23, 2024How to Use Grep, Awk, Sed, and Find Commands in LinuxThe grep command is one of the most powerful and widely used command-line tools in Unix/Linux for searching text. It allows you to search for specific patterns within files or input streams, using regular expressions for more complex searches. The ...DiscussLinux