Sinusystem.net

DEEN

Download

Get sinusystem packages from our debian repository

All of the modules listed here are freely available under GPLv3 licence.
Here is the link to our public Debian repository:

http://debian.sinusystem.net/

Debian repository: debian.sinusystem.net

Debian repository: debian.sinusystem.net

Packages available:

Count: 20 packages

Installation instructions:

  • 1. Get public GPG key and activate it:
    sudo wget -O - http://debian.sinusystem.net/public.gpg.key | apt-key add -
    Alternative:
    sudo wget -qO- http://debian.sinusystem.net/public.gpg.key | tee /etc/apt/trusted.gpg.d/public.asc
  • 2. Activate repository:
    sudo echo "deb http://debian.sinusystem.net public main" | tee /etc/apt/sources.list.d/public.list;
    apt-get update
  • 3. Installation
    apt install public

Installation instructions for Debian based systems like Ubuntu or Raspbian:

  • 1. Get public GPG key and activate it:
    wget -O - http://debian.sinusystem.net/public.gpg.key | apt-key add -
  • 2. Activate repository:
    echo "deb http://debian.sinusystem.net public main" | tee /etc/apt/sources.list.d/sinusystem.list;
    apt update
  • 3. Installation
    apt install sinusystem
Just in case you need it, here is how to fix the lack of these packages in the main debian repository.

Debian Buster (10.0) PHP7.4 Installation

sudo apt -y install lsb-release apt-transport-https ca-certificatessudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpgecho "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/php.list

Debian Stretch (9.0) PHP7.2 Installation

wget -q -O- https://packages.sury.org/php/apt.gpg | apt-key add -
echo "deb https://packages.sury.org/php/ stretch main" | tee /etc/apt/sources.list.d/php.list

PHP7.2 Mcrypt and Gnupg extensions

apt install gcc make autoconf libc-dev libmcrypt-dev php7.2-dev pkg-config
pecl install mcrypt-1.0.1

php -i | grep mcrypt

sudo echo "extension=mcrypt.so" >/etc/php/7.2/cli/conf.d/20-mcrypt.ini
sudo echo "extension=mcrypt.so" >/etc/php/7.2/apache2/conf.d/20-mcrypt.ini


php -i | grep gnupg

apt install libgpgme11-dev
pecl install gnupg-1.4.0

sudo echo "extension=gnupg.so" >/etc/php/7.2/cli/conf.d/20-gnupg.ini
sudo echo "extension=gnupg.so" >/etc/php/7.2/apache2/conf.d/20-gnupg.ini