Skip to content

Instantly share code, notes, and snippets.

@yyano
Last active April 7, 2019 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yyano/90336b1a1735ecf4b03f17b09e685523 to your computer and use it in GitHub Desktop.
Save yyano/90336b1a1735ecf4b03f17b09e685523 to your computer and use it in GitHub Desktop.
Raspberry Pi 3B+セットアップメモ

2019/04/05時点

Install Raspbian

Go言語

rclone

  • 要:Go言語 1.12?
  • Install
    • curl https://rclone.org/install.sh | sudo bash
  • rclone move /mnt/r.backup/ od201903:/r.Backup/ --delete-empty-src-dirs --bwlimit="08:00,100m 17:00,2m" --low-level-retries 1 --transfers 2
    • 08:00 ~ 100MBytes/s
    • 17:00 ~ 2MBytes/s
    • low-levelリトライは1回
    • 同時転送:2ファイル

git

  • sudo apt install git

nfs client

  • たぶんインストール済み
  • sudo apt-get install nfs-common
  • sudo mkdir /mnt/backup
  • sudo mount -t nfs 192.168.1.4:/backup /mnt/backup/ -o hard,intr

node.js

c9

Raspian Lite を Desktop化

  • sudo apt install raspberrypi-ui-mods
  • すごく時間がかかるので、公式WebからDesktopのイメージをダウンロードしてSDカードのセットアップからしたほうが早い。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment