Categories: Linux

Install Protobuf Ubuntu

git clone https://github.com/google/protobuf.git
cd protobuf
./autogen
./configure
make
make check
sudo make install
sudo apt-get install protobuf-c-compiler
wget -c https://github.com/google/protobuf/releases/download/v3.0.0-beta-1/protobuf-java-3.0.0-beta-1.zip
unzip protobuf-java-3.0.0-beta-1.zip
cd protobuf-java-3.0.0-beta-1
./autogen
./configure
make
sudo make install
# add /usr/local to /etc/environment

wget https://github.com/protobuf-c/protobuf-c/releases/download/v1.1.1/protobuf-c-1.1.1.tar.gz
tar xzf protobuf-c-1.1.1.tar.gz
cd protobuf-c-1.1.1
./configure
make
sudo make install
# jika ketemu error export LD_LIBRARY_PATH=/usr/local/lib, lakukan hal berikut
export LD_LIBRARY_PATH=/usr/local/lib

 

Source

http://stackoverflow.com/questions/25518701/protobuf-cannot-find-shared-libraries

Akhmad Fakhoni Listiyan Dede

Share
Published by
Akhmad Fakhoni Listiyan Dede

Recent Posts

Install kubernetes cluster using kubeadm

Hello everyone! 👋 Welcome to our step-by-step guide on using kubeadm to install Kubernetes. It's…

10 months ago

Meningkatkan Efisiensi Memory Proxmox Lebih dari 20%

Proxmox adalah hypervisor yang populer digunakan karena penggunaannya yang cukup simpel jika dibandingkan dengan hypervisor…

4 years ago

Longhorn Failed Upgrade from v0.8.1 to v1.0.0 caused by pv created before v0.6.2

This post is mirror of https://forums.rancher.com/t/failed-upgrade-from-v0-8-1-to-v1-0-0-caused-by-pv-created-before-v0-6-2/17586 I scale down all pods that has vpc to…

4 years ago

Cara Setup Network Ubuntu Server 18.04 pada Proxmox

Ubuntu Konfigurasi network pada Ubuntu Server 18.04 berbeda dengan ubuntu versi sebelumnya. Versi sebelumnya menggunakan…

5 years ago

VSCode Terminal Font Fix on MacOS

For detailed problems, see https://notulensiku.com/2019/02/fix-integrated-terminal-font-vscode/ To solve on mac, you need to install powerline fonts…

5 years ago

Enable Forward Secrecy pada Apache

Untuk mengaktifkan Forward Secrecy pada web browser Apache, versi minimum yang dibutuhkan adalah: OpenSSL 1.0.1c+Apache…

5 years ago