B+起動しなくなった><




s316.net/2017/235のあと。

SDカード変えても何しても起動しなくなったのでpi 2Bを追加導入してやった!

VNCを入れる前後で追加して実施したメンテナンスを記載しておく:
・Dropbearからはスクリプト実行が旨く行かなかった
ので、手動でコピペして各種ソフトを入れる

・明らかに使わないソフトを消す
 Raspberry Pi の最適化を試みる:http://sstea.blog.jp/raspi/optimize.html
 sudo apt-get autoremove -y scratch
 sudo apt-get autoremove -y python-pygame
 sudo apt-get autoremove -y sonic-pi
 sudo apt-get autoremove -y python-minecraftpi
 sudo apt-get autoremove -y netsurf-common dillo
 sudo apt-get autoremove -y dphys-swapfile
 このあたり。ラズパイ興味持ってから1年近くたってるけど、一度も触ろうと思う事も遊ぼうと思う事もなかったのでさくっと削除。

・使わない常時起動をとめる
 sudo chkconfig dphys-swapfile off
 sudo chkconfig motd off
 sudo chkconfig triggerhappy off

デーモン停止の記事はいくつかあたるけれども、GUI自動ログイン環境にあたっては、lightdmとplymouthはOFFにしちゃだめらしい。というかだめになった。

・RAMディスクを使う
 /etc/fstabに下記の内容を追記する
 tmpfs /tmp tmpfs defaults,size=32m,noatime,mode=1777 0 0
 tmpfs /var/tmp tmpfs defaults,size=16m,noatime,mode=1777 0 0
 人により環境により、
 tmpfs /var/log tmpfs defaults,size=32m 0 0も追記してlogファイルも揮発性にしている環境もあるらしい。……恐ろしいのでななんしはやらない。




Tags:, , ,

This entry was posted on 日曜日, 1月 22nd, 2017 at 15:37 and is filed under Raspi.

You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.

(1) Response to “B+起動しなくなった><”

  1. ななし Says:
    -

    あんぜんなおまけ:
    ◆カーネル起動~ログインプロンプト表示までを最適化する:http://sstea.blog.jp/raspi/optimize2.html

    sudo nano /boot/cmdline.txt コマンドラインに quiet を追記する。