Skip to content

Development Environment Setup: Debian

Maikel edited this page Sep 21, 2023 · 4 revisions

Debian setup

The Debian setup is very similar to Development Environment Setup: Ubuntu. Follow that guide and check here for additions specific to Debian.

Debian GNU/Linux 12 (bookworm)

We rely on wkhtmltopdf-binary which is still pointing to an old libssl version. The safest way to install it is locally in your user-account (with which you run the OFN app).

# Inspired by https://stackoverflow.com/a/73604364/3377535
cd /tmp
wget https://www.openssl.org/source/openssl-1.1.1o.tar.gz
tar -zxvf openssl-1.1.1o.tar.gz
cd openssl-1.1.1o
./config
make
mkdir -p $HOME/.opt/lib
mv libcrypto.so.1.1 libssl.so.1.1 $HOME/.opt/lib/

echo 'export LD_LIBRARY_PATH=$HOME/.opt/lib:$LD_LIBRARY_PATH' >> .bash_aliases
. .bash_aliases
Clone this wiki locally