APashwini purwatinashwini23.hashnode.dev·Aug 23, 2024 · 4 min readShell scripting Basic interview questions1**.What is the best way to run a script in the background?** Ans: For a script to run in the background, simply add "&" at the end of the command. Example: script.sh & What is the use of the "$?" command? Ans: By using the command "$?", you can fi...00
APashwini purwatinashwini23.hashnode.dev·Aug 23, 2024 · 4 min readShell Script Practical Interview Questionswrite a shell script to read user input as a string an in output it will reverse the string Ans: #!/bin/bash # Prompt the user to enter a string read -p "Enter a string to reverse: " input # Reverse the string and print it reversed=$(echo "$input"...00
APashwini purwatinashwini23.hashnode.dev·Aug 1, 2024 · 3 min readKubernetes ArchitectureKubernetes is a powerful container orchestration platform that automates the deployment, scaling, and management of containerized applications. Its architecture is designed to manage large-scale containerized applications efficiently. Here’s a breakd...00
APashwini purwatinashwini23.hashnode.dev·Jul 23, 2024 · 3 min readA Guide to Docker Bind Mounts vs VolumesBind Mounts: In Docker, bind mounts are a method for sharing files or directories between the host machine and a Docker container. This allows changes to the files or directories on the host to be reflected inside the container and vice versa. Defin...00
APashwini purwatinashwini23.hashnode.dev·Jul 22, 2024 · 8 min readBeginner's Guide to Grafana: All the BasicsWhat is Grafana ? Grafana is a popular open-source data visualization and analytics platform that allows you to create custom dashboards and visualizations based on a variety of data sources. Grafana is often used for monitoring and analyzing metrics...00