Skip to content

Instantly share code, notes, and snippets.

@PonDad
Created August 27, 2023 21:51
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 PonDad/3415837db6db0ce22352eda8babb7622 to your computer and use it in GitHub Desktop.
Save PonDad/3415837db6db0ce22352eda8babb7622 to your computer and use it in GitHub Desktop.
Configuration cheat sheet for raspberry pi

Raspberry Pi 設定チートシート

設定

vncとi2cを有効化する

setting -> raspberry pi configuration -> interfaces -> vnc i2c

日本語化・文字化け防止UTF−8指定

setting -> raspberry pi configuration -> location ja, utc-8

日本語入力

sudo apt install fcitx-mozc -y

レガシーカメラ有効化

sudo raspi-config -> 3.interface option -> legacy camera enable

ファンの起動温度設定

sudo raspi-config
Navigate to `4 Performance Options` -> `P4 Fan` -> `Yes` -> `14` -> `60` -> `OK` -> `OK` -> `Finish` -> `YES`

emojiフォントインストール

https://gist.github.com/alhafoudh/b27870eb92542d3da6453b1a64652089

を参照してください

mkdir ~/tmp
cd tmp
wget https://fontsdata.com/zipdown-segoeuiemoji-132714.htm 
wget https://noto-website.storage.googleapis.com/pkgs/NotoColorEmoji-unhinted.zip
mv zipdown-segoeuiemoji-132714.htm segoeuiemoji.zip
unzip segoeuiemoji.zip
unzip NotoColorEmoji-unhinted.zip
mkdir $HOME/.fonts &>/dev/null
mv seguiemj.ttf "$HOME/.fonts/Segoe UI.ttf"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment