Hello friends! Today, we will learn how to put Minikube on your Ubuntu computer. Minikube is a tool that runs Kubernetes, a very popular thing for managing apps, on your own machine. Itâs easy to do, and Iâll show you everything step by step. We will also need kubectl (a command tool for Kubernetes) and Docker (a tool to run containers). Donât worry, Iâll explain it all in simple words like weâre chatting! This simple tutorial uses an prewritten shell script that will install and configure complete k8s cluster using Minikube on your Ubuntu and other Debian based systems. The…
Author: Rahul
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…
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…