Minikube is a tool that helps you run Kubernetes on your own computer. It creates a small virtual machine that runs a single-node Kubernetes cluster. This helps developers test and learn Kubernetes without needing a big server. Minikube is easy to install and works on Windows, macOS, and Linux. This tutorial will help you to to setup K8s cluster on you Windows machine with the help of minikube. You must have a hypervisor installed on your Windows system like VirtualBox. So lets get started with the VirtualBox installation. Step 1: Installing VirtualBox Use the following steps to download and install…
Author: Rahul
ChromeDriver is a small software that helps other programs (like Selenium) to control Google Chrome browser automatically. If you want to automate a web browser using Selenium on Ubuntu or any other system, you need ChromeDriver. This small software helps Selenium control Google Chrome for testing websites or scraping data. In this tutorial, we will help you to install correct ChromeDriver version that work properly with installed Google Chrome version on your Ubuntu and other Debian based systems in a very simple way. Step 1: Update Your System Open the Terminal (press Ctrl + Alt + T). Execute following command…
Hey, Linux folks! Ever notice your system getting sluggish, even though the CPU’s not sweating? Chances are, something’s gobbling up all your RAM. Memory-hungry processes can sneak up on you, and before you know it, your machine’s swapping like crazy or just freezing up. Let’s figure out how to find the top 10 culprits eating your memory and what you can do to tame them. It’s not as tricky as it sounds—promise! Here is the quick command to find high memory consuming processes in Linux: ps -eo pid,ppid,cmd,%mem –sort=-%mem | head -n 11 Why Care About Memory Usage? RAM’s like…
Hey there! If you’re using Linux—whether it’s on a server, your laptop, or some random project—you’ve probably noticed it can slow down sometimes. Usually, that’s because a few processes are hogging the CPU. Figuring out what they are and getting them under control can make a huge difference. So, let’s walk through how to spot the top 10 CPU-heavy processes and what you can do about them. Trust me, it’s easier than it sounds! Here is the quick command to find CPU-intensive processes: ps -eo pid,ppid,cmd,%cpu –sort=-%cpu | head -n 11 Why Bother Checking CPU Usage? Picture this: your system’s…
The APT cache stores downloaded package files on your system. Over time, this cache can take up significant disk space. How do you clear the apt cache? You simply use this apt clean command option: apt clean Clearing the APT cache is a simple way to free up space while keeping your system running smoothly. Clear Apache Cache: Step by Step Guide Step 1: Check Disk Space Usage Before clearing the APT cache, check how much disk space is currently used by the cache. Open a terminal and execute the following command: sudo du -sh /var/cache/apt This will show the…
I am working on a AI model that have a few files larger than 10MiB of trained model. While pushing those models to huggingface repository I got an error saying the files are too large to upload. Hugging Face has a size limit for single files, and files larger than 10MiB need special handling. This means I need to change the way I upload or store these files. This article will help you understand why this error happens and how you can fix it. You will learn how to push large files to a Hugging Face repository step by step.…
Today, I found a file on my server named -config.ini that starts with a hyphen. It seems someone created it as a backup. The problem is, the starting hyphen is treated as a command-line option, making it tricky to delete. If you’re facing the same issue, don’t worry—this guide will show you how to remove it safely. Files with a “-” at the beginning of their name can be removed using the rm command with additional care since the – is interpreted as an option by most Unix commands. Delete file name begin with hyphen Here’s how you can safely…
It is important to know which NVIDIA driver version is installed on your Linux system for compatibility with your hardware and software. The driver version ensures your graphics card works properly and supports the applications you use. Knowing the version also helps when updating or troubleshooting. You can check the installed version using commands like nvidia-smi or by checking system settings in your Linux distribution. This tutorial will help you understand how to check the NVIDIA driver version on your Linux system. It will guide you step-by-step using simple commands and tools. Check NVIDIA Driver Version on Linux Choose one…
If you’re a Linux user, and you use distros such as Ubuntu or Debian, then you will have surely seen the command apt update. But what is it, exactly, and why do you want to run it often? In this article, we are going to break down the apt update command into simple words and explain what role it has in keeping your system running as it should. What is apt? APT is an acronym for Advanced Package Tool, and it is a command-line utility that allows us to handle software packages in Debian-based Linux distributions such as Ubuntu. An…
When you use Linux, especially Ubuntu or other Debian-based systems, you may notice that over the time your systems disk filled with many unnecessary files. These files can take up space and make your system feel cluttered. Don’t worry, the Apt package manager provides a simple command apt autoremove, that can help you clean your system easily. In this guide, we will explain what it does, why you need it, and how to use it with clear step by step instructions. What is apt autoremove? When you install or update software on Linux, some extra files and packages (called dependencies)…