-
Notifications
You must be signed in to change notification settings - Fork 1
Home
The ZorinOS App Manager
is a tool which allows for easier installation of packages which you do not want to go hunt down what you need. It also includes some automated processes such as a pre-configured Netplan
template for automatically managing network adapters.
On top of all the apps and tweaks provided, this script also gives the user the ability to install ZorinOS Pro Layouts which includes the Windows 10/11, and MacOS layouts.
If you need a one-stop interface for installing your most needed programs, give the manager a spin if you're looking to save a bit of time.
If you wish to add the Zorin repo to your list of sources, the command below will create a new file located at /etc/apt/sources.list.d/aetherinox-zorin-apt-repo-archive.list
Open Terminal
and add the GPG key for the developer to your keyring
wget -qO - https://github.com/Aetherinox.gpg | sudo gpg --dearmor -o /usr/share/keyrings/aetherinox-zorin-apt-repo-archive.gpg
Then execute the command below to receive our package list:
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/aetherinox-zorin-apt-repo-archive.gpg] https://raw.githubusercontent.com/Aetherinox/zorin-apt-repo/master $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/aetherinox-zorin-apt-repo-archive.list
Be aware that most packages hosted in this repo are for amd64
, so your desired package may not be available if you're running any other.
Once you have completed the steps above, we need to tell your machine to update your repos, in Terminal execute:
sudo apt-get update
Your device should get a list of the latest packages available. You can then search for a package by executing:
grep -h -P -o "^Package: \K.*" /var/lib/apt/lists/*zorin-apt-repo*_Packages | sort -u
The above command will show you a list of all packages available from our repo. As an example, you could see:
deb-pacman
github-desktop
ocs-url
qubes-gpg-split
qubes-gpg-split-dbgsym
qubes-gpg-split-tests
qubes-thunderbird
qubes-utils
zorin-pro-layouts
Install a package by using
sudo apt-get install <packagename>
If you decide to use the Zorin App Manager
in this repo, it will fetch the packages automatically.
Are these instructions not clear? Wrong? Insufficient? This documentation page is a Wiki, so you can contribute by improving it!