Created
March 4, 2017 10:59
-
-
Save rngadam/f1423ebc12f88ec617ec6d82e282e2e0 to your computer and use it in GitHub Desktop.
Extra optional steps from setup of Raspberry Pi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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