LoginSignup
0
1

More than 3 years have passed since last update.

Raspberry PiにRaspbianをインストールしたら最初にすることメモ

Posted at

apt

一括アップデート

$ sudo apt update && sudo apt -y upgrade && sudo apt -y dist-upgrade && sudo rpi-update -y && sudo apt -y autoremove && sudo apt -y autoclean

※アップデート後に再起動させる場合は、&& sudo init 6を追加します。

リモートデスクトップ設定

TightVNC Serverをインストールする

IPアドレスを固定する

$ sudo nano /etc/dhcpcd.conf
/etc/dhcpcd.conf
+ interface wlan0
+ static ip_address=192.168.0.8/24
+ static routers=192.168.1.1
+ static domain_name_servers=192.168.1.1
0
1
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
1