-
-
Save niedbalski/80e7d3398ea26f2e43af4e5e463f5a98 to your computer and use it in GitHub Desktop.
Setup zeromq in Ubuntu 16.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# Download zeromq | |
# Ref http://zeromq.org/intro:get-the-software | |
wget https://github.com/zeromq/libzmq/releases/download/v4.2.2/zeromq-4.2.2.tar.gz | |
# Unpack tarball package | |
tar xvzf zeromq-4.2.2.tar.gz | |
# Install dependency | |
sudo apt-get update && \ | |
sudo apt-get install -y libtool pkg-config build-essential autoconf automake uuid-dev | |
# Create make file | |
cd zeromq-4.2.2 | |
./configure | |
# Build and install(root permission only) | |
sudo make install | |
# Install zeromq driver on linux | |
sudo ldconfig | |
# Check installed | |
ldconfig -p | grep zmq | |
# Expected | |
############################################################ | |
# libzmq.so.5 (libc6,x86-64) => /usr/local/lib/libzmq.so.5 | |
# libzmq.so (libc6,x86-64) => /usr/local/lib/libzmq.so | |
############################################################ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment