-
-
Save snovakovic/3f897072b114e54767cc5aac2c098d21 to your computer and use it in GitHub Desktop.
install zeromq in ubuntu 14.04
This file contains hidden or 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 | |
############################################## | |
#from http://zeromq.org/intro:get-the-software | |
############################################## | |
#get zeromq | |
wget http://download.zeromq.org/zeromq-4.0.5.tar.gz | |
#unpack tarball package | |
tar xvzf zeromq-4.0.5.tar.gz | |
#install dependency | |
sudo apt-get update && \ | |
sudo apt-get install -y libtool pkg-config build-essential autoconf automake uuid-dev | |
#in zeromq dir | |
cd zeromq-4.0.5 | |
#create make file | |
./configure | |
#build and install(root permission only) | |
sudo make install | |
#install zeromq driver on linux | |
sudo ldconfig | |
#check installed | |
ldconfig -p | grep zmq | |
############################################################ | |
#libzmq.so.4 (libc6,x86-64) => /usr/local/lib/libzmq.so.4 | |
#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