Skip to content

Instantly share code, notes, and snippets.

@Kamisama666
Kamisama666 / phpzmqinstall.sh
Last active March 18, 2023 15:58
Installation of ZeroMQ and php-zmq extension on Ubuntu 14.04. Must be run as root
#!/bin/bash
cd /tmp
apt-get update
apt install -y libtool pkg-config build-essential autoconf automake uuid-dev git wget
git clone git://github.com/jedisct1/libsodium.git
cd libsodium/
./autogen.sh
./configure && make check
make install
ldconfig