forked from AleoNet/snarkOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_ubuntu.sh
executable file
·48 lines (40 loc) · 1.14 KB
/
build_ubuntu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
echo "Aborting: run as root user!"
exit 1
fi
echo "================================================"
echo " Attention - Building snarkOS from source code."
echo "================================================"
# Install Ubuntu dependencies
apt-get update
apt-get install -y \
build-essential \
curl \
clang \
gcc \
libssl-dev \
llvm \
make \
pkg-config \
tmux \
xz-utils
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env
# Install snarkOS
# cargo clean
cargo install --path .
echo "=================================================="
echo " Attention - Please ensure ports 4130 and 4180"
echo " are enabled on your local network."
echo ""
echo " Cloud Providers - Enable ports 4130 and 4180"
echo " in your network firewall"
echo ""
echo " Home Users - Enable port forwarding or NAT rules"
echo " for 4130 and 4180 on your router."
echo "=================================================="
# Open ports on system
ufw allow 4130/tcp
ufw allow 4180/tcp