ParetoSecurity Packages

Secure your systems with ParetoSecurity CLI tools. Learn more on our GitHub repository .

macOS

Version 10.14+

Download for Mac

Linux

Debian, Ubuntu, Red Hat, Fedora

Automatic installation

You can automatically install ParetoSecurity with:

curl -sl pkg.paretosecurity.com/install.sh | sudo bash

Debian- and Ubuntu-based distributions

Installing

The easiest way to install ParetoSecurity is to download the x64 .deb package or ARM64 .deb package. After downloading, you can install the package with:

sudo apt install ./paretosecurity_{amd64||arm64}.deb

Installing the .deb package will automatically set up the ParetoSecurity APT repository and signing key needed to automatically update ParetoSecurity and verify the integrity of the downloaded packages.

Alternatively, you can manually configure the ParetoSecurity APT repository and install ParetoSecurity by running the following commands:

sudo apt-get install wget gpg
curl -fsSL https://pkg.paretosecurity.com/paretosecurity.gpg | sudo tee /usr/share/keyrings/paretosecurity.gpg >/dev/null
echo 'deb [signed-by=/usr/share/keyrings/paretosecurity.gpg] https://pkg.paretosecurity.com/debian stable main' | sudo tee /etc/apt/sources.list.d/pareto.list
sudo apt update && sudo apt install paretosecurity

Quick Start

paretosecurity check

This will analyze your system and provide a security report highlighting potential improvements and vulnerabilities.

RHEL-, Fedora-, and CentOS-based distributions

Installing

The easiest way to install ParetoSecurity is to download the x64 .rpm package or ARM64 .rpm package. After downloading, you can install the package with:

sudo dnf install ./paretosecurity_{amd64||arm64}.rpm

Installing the .rpm package will automatically set up the ParetoSecurity yum repository. On first update, dnf will retrieve the signing key needed to verify the integrity of the downloaded packages.

Alternatively, you can manually configure the ParetoSecurity yum repository and install ParetoSecurity by running the following commands:

sudo rpm --import https://pkg.paretosecurity.com/paretosecurity.gpg
curl -fsSl https://pkg.paretosecurity.com/rpm/paretosecurity.repo | sudo tee
/etc/yum.repos.d/paretosecurity.repo
sudo dnf install paretosecurity

Quick Start

paretosecurity check

This will analyze your system and provide a security report highlighting potential improvements and vulnerabilities.

Archlinux-based distributions

Installing

The easiest way to install ParetoSecurity is to download the x64 .archlinux package or ARM64 .archlinux package. After downloading, you can install the package with:

sudo pacman -U paretosecurity_{amd64||arm64}.archlinux.pkg.tar.zst

Installing the .archlinux package will automatically set up the ParetoSecurity arch repository. On first update, pacman will retrieve the signing key needed to verify the integrity of the downloaded packages.

Alternatively, you can manually configure the ParetoSecurity pacman repository and install ParetoSecurity by running the following commands:

curl -fsSL https://pkg.paretosecurity.com/paretosecurity.gpg | sudo pacman-key --add -
sudo pacman-key --lsign-key [email protected]
echo '[paretosecurity]' | sudo tee -a /etc/pacman.conf >/dev/null
echo "Server = https://pkg.paretosecurity.com/aur/stable/$(uname -m)" | sudo tee -a /etc/pacman.conf >/dev/null
sudo pacman -Syu paretosecurity

Quick Start

paretosecurity check

This will analyze your system and provide a security report highlighting potential improvements and vulnerabilities.