LoginSignup
0
2

More than 3 years have passed since last update.

Raspbian buster 初期設定,IP固定,開発環境 etc..

Last updated at Posted at 2019-10-05

Raspbian Buster の初期設定メモです.

最初にIPを固定してVNCから操作できるようにします.
左上アイコンからRaspberryPiの設定よりVNCを有効にします.
次に
/etc/network/interfaces
を開き

auto lo
iface lo inet loopback

iface eth0 inet manual

allow-hotlplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf

を書き加えます.
デスクトップ右上からネットワーク設定を開きIPを入力してApplyを押せば再起動後固定完了です.

次にその他インストールをしていきます.

sudo apt-get install ibus-mozc
sudo apt-get install -y apt-transport-https
sudo apt-get install  vim
//vimがこのままでは見にくいので,
vim .vimrc
の中にsyntax on  colorscheme evening と打ち込んで下さい

sudo apt-get install build-essential
sudo apt-get install gcc 
sudo apt-get install cmake
sudo apt-get install make
//visual-studio-code
 sudo su
. <( wget -O - https://code.headmelted.com/installers/apt.sh )
sudo apt-get install code-oss=1.29.0-1539702286

sudo apt-get install libi2c-dev
sudo apt-get install git-core

WiringPiについて
https://github.com/WiringPi/WiringPi からファイルをとってきます,
解凍後,解凍したファイル内で ./build

0
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
0
2