Update README.md

This commit is contained in:
Jordan
2023-11-12 22:47:51 +01:00
committed by GitHub
parent ebbe8b3fa4
commit 8f5af65eba
+21 -3
View File
@@ -35,25 +35,43 @@ PVE Kernel Cleaner is a program to compliment Proxmox Virtual Environment which
Before using this program you will need to have the following packages installed. Before using this program you will need to have the following packages installed.
* cron * cron
* curl
To install all required packages enter the following command. To install all required packages enter the following command.
##### Debian: ##### Debian:
``` ```
sudo apt-get install cron sudo apt-get install cron curl
``` ```
## Installing ## Installing
To install PVE Kernel Cleaner please enter the following commands 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 git clone https://github.com/jordanhillis/pvekclean.git
cd pvekclean cd pvekclean
chmod +x pvekclean.sh chmod +x pvekclean.sh
./pvekclean.sh ./pvekclean.sh
``` ```
### Installation via Curl
1. 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 ## Updating