jordanhillis / pvekclean

Easily remove old/unused PVE kernels on your Proxmox VE system
MIT License
336 stars 56 forks source link
debian kernel proxmox proxmox-ve proxmoxve pve pve-kernels

PVEKCLEAN Logo

Easily remove old/unused PVE kernels on your Proxmox VE system

Version License: MIT Updated Proxmox Debian

What is PVE Kernel Cleaner?

PVE Kernel Cleaner is a program to compliment Proxmox Virtual Environment which is an open-source server virtualization environment. PVE Kernel Cleaner allows you to purge old/unused kernels filling the /boot directory. As new kernels are released the older ones have to be manually removed frequently to make room for newer ones. This can become quite tedious and require extensive time spent monitoring the system when new kernels are released and when older ones need to be cleared out to make room. With this issue existing, PVE Kernel Cleaner was created to solve it.

Example Usage

PVEKCLEAN Example

Features

Latest Version

Prerequisites

Before using this program you will need to have the following packages installed.

To install all required packages enter the following command.

Debian:
sudo apt-get install cron curl git

Installing

You can install PVE Kernel Cleaner using either Git or Curl. Choose the method that suits you best:

Installation via Git

  1. Open your terminal.

  2. Enter the following commands one by one to install PVE Kernel Cleaner:

git clone https://github.com/jordanhillis/pvekclean.git
cd pvekclean
chmod +x pvekclean.sh
./pvekclean.sh

Installation via Curl

  1. Open your terminal.

  2. Use the following command to install PVE Kernel Cleaner:

curl -o pvekclean.sh https://raw.githubusercontent.com/jordanhillis/pvekclean/master/pvekclean.sh
chmod +x pvekclean.sh
./pvekclean.sh

Updating

PVE Kernel Cleaner checks for updates automatically when you run it. If an update is available, you'll be notified within the program. Simply follow the on-screen instructions to install the update, and you're all set with the latest version!

Usage

Example of usage:

 pvekclean [OPTION1] [OPTION2]...

-k, --keep [number]   Keep the specified number of most recent PVE kernels on the system
                      Can be used with -f or --force for non-interactive removal
-f, --force           Force the removal of old PVE kernels without confirm prompts
-rn, --remove-newer   Remove kernels that are newer than the currently running kernel
-s, --scheduler       Have old PVE kernels removed on a scheduled basis
-v, --version         Shows current version of pvekclean
-r, --remove          Uninstall pvekclean from the system
-i, --install         Install pvekclean to the system
-d, --dry-run         Run the program in dry run mode for testing without making system changes

Usage Examples:

Here are some common ways to use PVE Kernel Cleaner:

Developers

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments