Vai al contenuto
SysLinuxOS-Tools Repository

SysLinuxOS Repository

The official SysLinuxOS-Tools APT repository lets you install and update all SysLinuxOS packages directly via apt, with automatic GPG verification and continuous updates.

Repository URL: https://fconidi.github.io/SysLinuxOS-Tools

Quick setup

A single command configures the repository, imports the GPG key and updates the APT sources:

curl -fsSL https://fconidi.github.io/SysLinuxOS-Tools/client/install-repo.sh | sudo bash

Then install any package with:

sudo apt install distroclone
sudo apt install distroclone-backup
sudo apt install syslinuxos-snapshots
sudo apt install syslinuxos-ring-conky
sudo apt install conky-window

Updates are delivered automatically on every apt upgrade, like any standard Debian package.

Manual setup

To configure the repository by hand:

# Import the signing key
curl -fsSL https://fconidi.github.io/SysLinuxOS-Tools/syslinuxos-archive-keyring.asc \
  | sudo gpg --dearmor -o /usr/share/keyrings/syslinuxos-archive-keyring.gpg

# Add the APT source (deb822 format)
sudo tee /etc/apt/sources.list.d/syslinuxos-tools.sources >/dev/null <<'EOF'
Types: deb
URIs: https://fconidi.github.io/SysLinuxOS-Tools
Suites: tirreno
Components: main
Architectures: amd64
Signed-By: /usr/share/keyrings/syslinuxos-archive-keyring.gpg
EOF

sudo apt update

Available packages (repo constantly updated)

  • distroclone — builds a bootable live ISO from your running Debian-based system
  • distroclone-backup — incremental rsync backup with Snapper integration on btrfs
  • syslinuxos-snapshots — btrfs snapshot management with GRUB integration
  • syslinuxos-ring-conky — ring-style Conky theme with automatic resolution scaling
  • conky-window — minimal Conky window theme for SysLinuxOS
  • grub-btrfs — btrfs snapshots in the GRUB menu (SysLinuxOS build)

Tip

After installing SysLinuxOS 13.2, I recommend reinstalling the packages, to update configuration files, and align all packages with apt.

Direct download

Packages are also available for direct download from GitHub and SourceForge without adding the repository:

wget https://github.com/fconidi/distroClone/releases/download/v1.4.8/distroClone_1.4.8_all.deb
sudo apt install -y ./distroClone_1.4.8_all.deb

Technical details

  • Hosting: GitHub Pages (branch main)
  • Signing: GPG RSA-4096, key ID 5FADCAF45BC3FA1D
  • Suite: tirrenoComponent: mainArchitecture: amd64
  • Package management: reprepro — index rebuilt and re-signed on every update

The grub-btrfs package is a customized SysLinuxOS build. The install script pins it at APT priority 1001 in /etc/apt/preferences.d/99-syslinuxos-tools.pref to ensure it always takes precedence over any Debian-provided version.

Franco Conidi aka edmond — francoconidi.itsyslinuxos.com