Linux Interview questions beginner to expert ❤️
How do you check disk space usage in Linux? df -h du -sh * // To check size in particular directory only top lvl du -ah . // Show size of file recursively Where are system logs stored? Most Linux log
Search for a command to run...
Articles tagged with #ramagrandhi
How do you check disk space usage in Linux? df -h du -sh * // To check size in particular directory only top lvl du -ah . // Show size of file recursively Where are system logs stored? Most Linux log
What is Infrastructure as Code (IaC)? IaC is the process of managing infrastructure using code instead of manual steps.We define resources like EC2, VPC, S3 in code and provision them automatically. W
Part -4
What is the architecture of Kubernetes? Explain control plane and worker nodes. Kubernetes follows a master–worker architecture. Control Plane (Master): Responsible for managing the cluster, making d
What is GIT and why it is used for ? Git is a distributed version control system used to track changes in source code and manage different versions of files. It helps developers collaborate, maintain
Why do we need Docker if we already have Virtual Machines? We use Docker because containers are much lighter and faster than virtual machines. They let us package applications with all dependencies, s