Skip to content

Instantly share code, notes, and snippets.

@jonathanpmartins
Last active July 28, 2019 03:14
  • Star 35 You must be signed in to star a gist
  • Fork 14 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jonathanpmartins/2510f38abee1e65c6d92 to your computer and use it in GitHub Desktop.
Install Libsodium on Ubuntu 14.04.3 LTS Trusty
#!/bin/bash
sudo add-apt-repository ppa:chris-lea/libsodium;
sudo echo "deb http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list;
sudo echo "deb-src http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list;
sudo apt-get update && sudo apt-get install libsodium-dev;
@Castaglia
Copy link

👍

Copy link

ghost commented Apr 8, 2016

Awesome. Was needed for Discord API.

@akaihola
Copy link

Aren't lines 3–4 what line 2 already does for me?

@jschwartzenberg
Copy link

Yes, with both line 2 and 3-4, the repository will be added twice. Once in /etc/apt/sources.list.d/chris-lea-libsodium-trusty.list and once in /etc/apt/sources.list.

@SniparsZach
Copy link

SniparsZach commented Nov 9, 2016

I am getting access denied for lines 2 and

@yumin9822
Copy link

1.0.10 version is here https://launchpad.net/~ondrej/+archive/ubuntu/php/

How to use
apt-get install -y software-properties-common
LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php
apt-get update
apt-get install -y libsodium-dev

@lawliet89
Copy link

On 16.04 at least, we have https://launchpad.net/ubuntu/+source/libsodium

sudo apt install libsodium-dev

@b3rew
Copy link

b3rew commented May 18, 2017

thanks

@loodsitnl
Copy link

Hi,
At last this worked for me:

sudo apt-get install -y software-properties-common

sudo bash -c "LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php"

sudo apt-get update

sudo apt-get install -y libsodium-dev

@zxymike93
Copy link

thanks

@zafhar
Copy link

zafhar commented Sep 13, 2017

Hi,
Will this

sudo apt-get install -y software-properties-common

sudo bash -c "LC_ALL=C.UTF-8 add-apt-repository -y ppa:ondrej/php"

sudo apt-get update

sudo apt-get install -y libsodium-dev

Works with php5.6 ??

Thanks

@jeong760
Copy link

jeong760 commented Nov 3, 2017

Thanks a lot. with this info, I've solved a sodium.h error message during node-multi-hashing compile process of my NOMP mining pool.

@JHPSoft
Copy link

JHPSoft commented Mar 13, 2018

thx for loodsitnl

It works for me

@RussellLuo
Copy link

This is really helpful! Thanks!

@shannonliang312
Copy link

thanks!

@AshMillenium
Copy link

2nd and 3rd command is giving me following error.
what should i do?

bash: /etc/apt/sources.list: Permission denied

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment