作業メモ: Raspberry PiでNTPサーバの設定

Raspbianのバージョン:
pi@raspberrypi:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 10 (buster)
Release: 10
Codename: buster

ハードウエア:
Pi Model B V2.0

1) NOOBS をSDカードにコピーして、Raspberry Piにセットして起動
2) 起動後のガイドに従って初期設定
3) Muninを設定
・Apache2 をインストール
・Muninをインストール
Muninの設定: /etc/munin/apache24.conf の先頭部分


Require all granted
Allow from all
Options None

4) GPSモジュールの設定
・ /boot/cmdline.txt を編集: console=serial0,115200 を削除
・sudo systemctl stop serial-getty@ttyS0.service
sudo systemctl disable serial-getty@ttyS0.service
・/boot/config.txt を編集:
enable_uart=1 を追加
dtoverlay=pps-gpio,gpiopin=18 を追加

PAGE TOP