How to Install Zorin OS Pro Packages on Zorin 16 and 17

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
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to restrict direct root access in Linux

We can do it just in two steps. Step One: At first we will create new root user as follows (for...

How to extract .tar.gz files in Linux/UNIX OS

A tarball is a group of files that are bundled together using the tar command. Use the...

How to add welcome message when SSH start?

You need to change the contents of /etc/motd. Unfortunately, by default, /etc/motd is a link to...

How to change root password when SSH logged in

Run the following command: passwd Now type your new passwordOnce done, retype new passwordDone!...

How to install Pinguzo on any Linux/UNIX OS

Login to Pinguzo panel using Softaculous account or create an account of Pinguzo To add new...