Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jordanhillis/pvekclean
Easily remove old/unused PVE kernels on your Proxmox VE system
https://github.com/jordanhillis/pvekclean
debian kernel proxmox proxmox-ve proxmoxve pve pve-kernels
Last synced: 5 days ago
JSON representation
Easily remove old/unused PVE kernels on your Proxmox VE system
- Host: GitHub
- URL: https://github.com/jordanhillis/pvekclean
- Owner: jordanhillis
- License: mit
- Created: 2018-10-23T14:29:49.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-13T18:16:40.000Z (12 months ago)
- Last Synced: 2024-08-01T19:57:25.162Z (3 months ago)
- Topics: debian, kernel, proxmox, proxmox-ve, proxmoxve, pve, pve-kernels
- Language: Shell
- Homepage:
- Size: 731 KB
- Stars: 305
- Watchers: 13
- Forks: 54
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-proxmox-ve - pvekclean
README
![PVEKCLEAN Logo](assets/banner.png)
Easily remove old/unused PVE kernels on your Proxmox VE system
[![Version](https://img.shields.io/badge/Version-v2.0.2-brightgreen)](https://github.com/jordanhillis/pvekclean)
[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
![Updated](https://img.shields.io/github/last-commit/jordanhillis/pvekclean)
![Proxmox](https://img.shields.io/badge/-Proxmox-orange)
![Debian](https://img.shields.io/badge/-Debian-red)### 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](assets/example-2.0.2.png)
## Features
* Removes old PVE kernels from your system
* Ability to schedule PVE kernels to automatically be removed on a daily/weekly/monthly basis
* Run a simple pvekclean command for ease of access
* Checks health of boot disk based on space available
* Debug mode for non-destructive testing
* Update function to easily update the program to the latest version
* Allows you to specify the minimum number of most recent PVE kernels to retain
* Support for the latest Proxmox versions and PVE kernels## Latest Version
* v2.0.2
## Prerequisites
Before using this program you will need to have the following packages installed.
* cron
* curl
* gitTo 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:
```bash
git clone https://github.com/jordanhillis/pvekclean.git
cd pvekclean
chmod +x pvekclean.sh
./pvekclean.sh
```
### Installation via Curl1. Open your terminal.
2. Use the following command to install PVE Kernel Cleaner:
```bash
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:* **Remove Old Kernels Non-Interactively:**
```bash
pvekclean -f
```
This command removes old PVE kernels without requiring user confirmation.* **Set Number of Kernels to Keep:**
```bash
pvekclean -k 3
```
This command specifies the number of most recent PVE kernels to keep on the system.* **Force Remove Old Kernels While Keeping a Certain Number:**
```bash
pvekclean -f -k 3
```
This command forces the removal of old PVE kernels while retaining a specific number of the most recent ones.* **Remove Newer Kernels and Keep a Specific Number:**
```bash
pvekclean -rn -k 2
```
This command removes newer PVE kernels and keeps a specified number of the most recent ones.* **Schedule Regular Kernel Removal:**
```bash
pvekclean -s
```
This command sets up PVE Kernel Cleaner to remove old PVE kernels on a scheduled basis. You can configure the schedule according to your needs.* **Perform a Dry Run without Making Changes:**
```bash
pvekclean -d
```
This command runs PVE Kernel Cleaner in dry run mode, simulating actions without actually removing any kernels or making changes to your system. It's useful for testing and understanding what the script would do.## Developers
* **Jordan Hillis** - *Lead Developer*
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
## Acknowledgments
* This program is not an official program by Proxmox Server Solutions GmbH