Showing posts with label kali. Show all posts
Showing posts with label kali. Show all posts

Monday, April 21, 2025

Resolving "No Space Left" Issue on Kali Linux

 If you're encountering a "no space left" error on your Kali Linux system, here are several solutions to free up space:


Quick Fixes

  1. Clear APT cache:

    bash

    sudo apt clean
    sudo apt autoclean
  2. Remove old kernels (keep the current one):

    bash
    sudo apt purge $(dpkg -l | grep 'linux-image-' | awk '{print $2}' | grep -v $(uname -r))
  3. Remove orphaned packages:

    ba


    sudo apt autoremove --purge