Skip to content

Instantly share code, notes, and snippets.

@koji
Last active April 17, 2017 00:17
Show Gist options
  • Save koji/cf84640c3a9fd51316ce407c62ec5469 to your computer and use it in GitHub Desktop.
Save koji/cf84640c3a9fd51316ce407c62ec5469 to your computer and use it in GitHub Desktop.

Change Timezone

$ sudo raspi-config 
Choose Internationalisation Options to change timezone

Activate ssh

$ sudo raspi-cofig

Select "Interfacing something", then activate ssh

Check IP adress

$ ifconfig wlan0
$ ifconfig -a

Open Mac's Terminal

ssh

$ ssh pi@IP address

Password should be raspberry if you don't change the default.

Option install Nodejs

Raspberry Pi3 has nodejs originally, but the version is 0.10.29 which is not LTS version and doesn't supprot some functions.

Install NVV

$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
$ source ~/.bashrc or close terminal and open it again
$ nvm -v
$ nvm ls-remote
$ nvm install 6.9.5

https://github.com/creationix/nvm

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