mirror of
https://github.com/bolucat/Archive.git
synced 2025-10-05 08:08:03 +08:00
13 lines
261 B
Bash
Executable File
13 lines
261 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# See the linux-install.md (README) first.
|
|
set -e
|
|
|
|
sudo apt update
|
|
sudo apt install golang-1.10 git -y
|
|
export PATH=$PATH:/usr/lib/go-1.10/bin
|
|
cd /tmp
|
|
git clone https://github.com/m13253/dns-over-https.git
|
|
cd dns-over-https
|
|
make
|
|
sudo make install |