mirror of
https://github.com/manggiperdana/CHR-Proxmox.git
synced 2026-04-28 03:19:27 +00:00
53 lines
1.5 KiB
Markdown
53 lines
1.5 KiB
Markdown
# 🖥️ CHR Installation Script for Proxmox
|
|
|
|
A simple shell script to automate the installation of **MikroTik Cloud Hosted Router (CHR)** on **Proxmox VE**.
|
|
This script helps you deploy CHR quickly and efficiently from the command line without manual configuration.
|
|
|
|
---
|
|
#### Video Tutorial
|
|
https://www.youtube.com/watch?v=hpyqLeu0W0o
|
|
|
|
## 📦 Repository Contents
|
|
|
|
| File | Description |
|
|
|------------------|--------------------------------------------|
|
|
| `chr-install.sh` | Main shell script to install CHR on Proxmox |
|
|
|
|
---
|
|
|
|
## 🚀 How to Use
|
|
|
|
There are two ways to run the script, depending on your preference:
|
|
|
|
---
|
|
|
|
### 🔹 Option 1: Run Directly from GitHub (Quick & Easy)
|
|
|
|
This method is ideal if you want to execute the script instantly without cloning the repository.
|
|
|
|
#### Using `curl`
|
|
|
|
```bash
|
|
bash <(curl -s https://raw.githubusercontent.com/manggiperdana/CHR-Proxmox/main/chr-install.sh)
|
|
```
|
|
### 🔹 Option 2: Clone the Repository First (Recommended for Review or Customization)
|
|
|
|
This method is better if you want to inspect or modify the script beforehand.
|
|
|
|
#### Steps
|
|
1. Clone the repository:
|
|
```bash
|
|
git clone https://github.com/manggiperdana/CHR-Proxmox.git
|
|
cd CHR-Proxmox
|
|
```
|
|
2. Make the script executable and run it:
|
|
```bash
|
|
chmod +x chr-install.sh
|
|
./chr-install.sh
|
|
```
|
|
## 📄 License
|
|
|
|
This project is licensed under the MIT License.
|
|
|
|
You are free to use, modify, and distribute this script.
|
|
Please note that it is provided as-is without any warranty.
|