Skip to content

Instantly share code, notes, and snippets.

@rngadam
Created March 4, 2017 10:59
Show Gist options
  • Select an option

  • Save rngadam/f1423ebc12f88ec617ec6d82e282e2e0 to your computer and use it in GitHub Desktop.

Select an option

Save rngadam/f1423ebc12f88ec617ec6d82e282e2e0 to your computer and use it in GitHub Desktop.
Extra optional steps from setup of Raspberry Pi
# SKIPPED (included in the full Jessie) node-red setup
download and copy update script to Raspberry Pi (GFW blocks access to install)
From your Mac to the RPi:
```
scp update-nodejs-and-nodered.sh pi@coderbunkerpi001.local:
```
run the script on the Raspberry Pi.
```
bash update-nodejs-and-nodered.sh
````
# (SKIPPED) Shadowsocks setup
```
pip install shadowsocks
```
shadowsocks.json (adapt configuration
```
{
"server":"76.74.219.180",
"server_port":8530,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"PASSWORD",
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false,
"workers": 1
}
```
Running:
```
sslocal -c shadowsocks.json
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment