Skip to content

Instantly share code, notes, and snippets.

@darkoverlordofdata
Last active October 4, 2019 23:07
Show Gist options
  • Save darkoverlordofdata/633f3df6c08179fbab40107b98ea985f to your computer and use it in GitHub Desktop.
Save darkoverlordofdata/633f3df6c08179fbab40107b98ea985f to your computer and use it in GitHub Desktop.
raspberrypi

Install Raspbian Buster

preferences -> RaspberryPi Configuration ->Interfaces
  enable vnc & ssh
  change host name
  disable auto login

sudo apt update
sudo apt upgrade -y

disable delivered user pi:
https://www.raspberrypi.org/documentation/configuration/security.md

sudo apt install mesa-utils -y
sudo nano /boot/config.txt
  uncomment framebuffer_width framebuffer_height

sudo reboot
sudo apt install clang cnake software-properties-common -y
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
sudo apt install nodejs -y
sudo npm install yarn -g
yarn global add bower
yarn global add coffeescript
yarn global add doran-cli
nano .bashrc
  export PATH=$PATH:/home/pi/.yarn/bin

source .bashrc
sudo apt install sshfs valac ninja-build -y
sudo pip3 install meson

git config --global user.name "darkoverlordofdata" git config --global user.email "darkoverlordofdata@gmail.com"

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