Overview
This guide explains how to install Zorin OS Pro packages on Zorin OS 16 and 17 using a free installation script developed by the cPanelCentral team.
The script configures repositories, installs the Zorin OS Pro keyring, and enables optional premium content. It supports both Zorin OS 16 (Focal) and Zorin OS 17 (Jammy).
Why Use It?
-
Free for everyone.
-
Developed and maintained by the cPanelCentral team.
-
Adds Zorin Pro wallpapers, themes, and desktop layouts.
-
Works with both Zorin OS 16 and Zorin OS 17.
-
Supports interactive and unattended installation.
-
Optionally installs premium apps, sound themes, and creative tools.
Prerequisites
Before you begin, ensure you have:
-
A system running Zorin OS 16 or Zorin OS 17.
-
Internet access.
-
Installed tools:
curl,sudo,apt-get.
Installation Instructions
1. Interactive Mode (Beginner-Friendly)
Run the script in interactive mode:
bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh )
The script will prompt you to:
-
Select your Zorin version (16 or 17).
-
Choose whether to install extra premium content.
2. Unattended Installation (Automated)
For unattended installation, set the VERSION variable and use the -U flag.
Zorin 16
VERSION=16 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U
Zorin 17
VERSION=17 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U
3. Unattended Installation with Extras
To include all optional premium content, add the -X flag.
Zorin 16 with extras
VERSION=16 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U -X
Zorin 17 with extras
VERSION=17 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U -X
4. Troubleshooting Keyring Issues
If the zorin-os-premium-keyring package fails, install it manually:
curl -fsSL -A 'Zorin OS Premium' \
https://packages.zorinos.com/premium/pool/main/z/zorin-os-premium-keyring/zorin-os-premium-keyring_1.0_all.deb \
-o zorin-os-premium-keyring_1.0_all.deb
sudo apt install ./zorin-os-premium-keyring_1.0_all.deb
Example Command Table
| Installation Type | Command Example |
|---|---|
| Interactive | bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) |
| Unattended (Zorin 16) | VERSION=16 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U |
| Unattended (Zorin 17) | VERSION=17 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U |
| Unattended + Extras (16) | VERSION=16 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U -X |
| Unattended + Extras (17) | VERSION=17 bash <( curl -Ls scripts.cpanelcentral.com/zorinos_pro.sh ) -U -X |
Final Step
After installation, reboot your system to apply changes:
sudo reboot
