LoginSignup
1
2

More than 3 years have passed since last update.

Raspberry Pi 環境構築

Last updated at Posted at 2019-06-13

OSイメージダウンロード

ダウンロードURL : https://www.raspberrypi.org/downloads/
OSイメージ種類:Raspbian Stretch with desktop and recommended software
イメージファイル名:2019-04-08-raspbian-stretch-full.zip

OSイメージ書き込み

ツール:Etcher

SSH, WiFi事前設定

  • ssh
  • wpa_supplicant.conf
country=JP
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
    ssid="«your_SSID»"
    psk="«your_PSK»"
}

Raspberry Pi起動

IP検索

ツール:Advanced IP Scanner

Raspberry Piへssh接続

Raspberry Pi初期設定

$ sudo apt-get update
$ sudo apt-get -y upgrade
$ sudo raspi-config

IP固定

$ sudo vi /etc/dhcpcd.conf
interface wlan0
static ip_address=192.168.1.XX/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1 8.8.8.8
$ sudo reboot

.bashrc修正

  • bin Directory
  • Editor(VI)
  • Alias(ls, lr, la)

アプリケーションインストール

  • Node.js
  • Enhanced Vi editor
  • Golang
  • Arduino IDE
  • MQTT
  • tmux
  • Docker
  • NTP
  • XScreenSaver
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2