- An external disk to back up your data
- A USB drive to install Zorin OS
- Format an external disk to exFAT format
- Back up your data to this external disk
- Don't forget to back up your config files (
.gitconfig,.ssh/,.Renviron,.Rprofile, etc.)
- Download the installation file (Core Edition) of Zorin OS here
- Install the utility Rufus (portable version) to create a bootable USB drive
- Plug your USB drive
- Launch Rufus and copy the iso file (Zorin OS) to the USB drive
- Leave your USB key plugged in
- Reboot your laptop
- Access the boot menu (press F10 or another key)
- Select your USB key and press enter
- Select Try or Install Zorin OS
- Follow instructions
- Reboot and unplug the USB drive
- Via graphical interface
- Alternatively,
# System packages ----
sudo apt update && sudo apt upgrade -y
# Flatpak ----
sudo flatpak update -y- Reboot
- Sound
- Microphone
- Webcam
- Network
- Peripherals
- Printer
- Firewall
- Disable search
- Disable connectivity check
- Disable Location
- Disable Desktop sharing
- Disable Remote connection
- Taskbar
- Zorin menu
- Notification area
- Activities
- File manager
- Workspaces
- Zorin Appearance
- Settings
...
- System package (apt)
- Flatpak
- Snap
.debfile
- OnlyOffice
- VLC
- Firefox
- Chromium
- OnlyOffice
- Zoom
- Teams for Linux
- GIMP
- Inkscape
- Zotero
- KeepassXC
- Proton Authenticator
- Color Picker
- Brave
- Brasero
- LibreOffice
- Remmina
- Rhythmbox
# Update APT repository indices ----
sudo apt update -qq
# Install helper packages ----
sudo apt install --no-install-recommends software-properties-common dirmngr wget
# Add CRAN GPG key ----
wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
# Add CRAN repository to APT repository list ----
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
# Update APT repository indices ----
sudo apt update
# Install R ----
sudo apt install r-base r-base-dev# Install git ----
sudo apt install gitsudo apt install texlive-fullsudo apt install python3 python3-dev python3-pip python3-venv# Install helper package ----
sudo apt install gdebi-core
# Download Positron ---
POSITRON_VERSION='2025.12.1-4'
wget https://cdn.posit.co/positron/releases/deb/x86_64/Positron-$POSITRON_VERSION-x64.deb
# Install/update Positron ----
sudo gdebi Positron-$POSITRON_VERSION-x64.deb
# Clean directory ----
rm Positron-$POSITRON_VERSION-x64.debinstall.packages("sf") # Resolve missing system libraries issue# Install utilities ----
sudo apt install \
apt-transport-https \
btop \
build-essential \
ca-certificates \
curl \
dirmngr \
ffmpeg
htop \
imagemagick \
screen \
software-properties-common \
ttf-mscorefonts-installer \
tree \
unzip \
wget \
zip
# Install system libraries ----
sudo apt install \
cmake \
libfreetype6-dev \
libpoppler-cpp-dev \
libmagick++-dev \
libmagick++-dev \
libpoppler-cpp-dev \
libgmp3-dev \
libgdal-dev \
libproj-dev \
libgeos-dev \
libudunits2-dev \
libnode-dev \
libcairo2-dev \
libnetcdf-dev \
libssl-dev \
libmpfrc++-dev \
libfftw3-bin \
libfftw3-dev \
libgsl-dev \
libharfbuzz-dev \
libfribidi-dev...