raspberrypi 4.1.13-v7+ IP 固定
2015/12/17
カテゴリー » Raspberry Pi 2 volumio
参考リンク:http://qiita.com/Cinosura/items/6ab435331ea2b3671a1d
IPアドレスの固定
アップデートしてraspberrypi 4.1.13-v7+ にすると/etc/network/interfaces でIP固定出来なくなっていた。
Raspbian 2015-05-05以降、設定箇所が/etc/network/interfacesから/etc/dhcpcd.confに変更になったとの事。
/etc/dhcpcd.confの末尾に追加
interface eth0
static ip_address=192.168.11.7/24
static routers=192.168.11.1
static domain_name_servers=192.168.11.3
— posted by くま at 04:44 pm TrackBack [0]
Raspberry Pi 2 Model B 必要機能、インストール完了?
2015/12/16
弱っちいと思っていたが中々と逞しい部分も見える(笑)
RaspberryPi2 Model Bをこき使う...詰め込みすぎ反省...
追加機能
赤外線リモコン、Bluetoothキーボード、音楽プレーヤー
日本語使用環境、電源停止スイッチ、gpio使用環境
i2s接続DAC(PCM5102A)
— posted by くま at 09:19 pm TrackBack [0]
Raspberry 動作している時のパワ−LEDを点滅状態
2015/12/12
カテゴリー » Raspberry Pi 2 Model B
led0:acsess
# echo heartbeat > /sys/class/leds/led1/trigger
パワ−LEDを点滅に変えるコマンドがこれ!
Raspberryはい何時もLEDが点灯したままなので操作状況が掴みにくいので
動作している時のパワ−LEDを点滅状態にする。
# vi /etc/rclocal
exit 0の前に以下を追加する。
echo heartbeat > /sys/class/leds/led1/trigger
— posted by くま at 10:21 pm TrackBack [0]
Raspberry Piには電源ボタンがありません(笑)
カテゴリー » Raspberry Pi 2 Model B
この記事を参考に電源OFFボタンを付けようとして
同ページのスクリプトを実行してみると
gpio コマンドが無いというエラーで動作せず...
色々検索してみて下のページを発見!無事動作させることが出来た
WiringPi(gpioコマンドインストール):http://making.mrlittlebig.com/?p=52
— posted by くま at 10:17 pm TrackBack [0]
Raspberry Pi2 リモコン検討中
カテゴリー » Raspberry Pi 2 Model B
このリモコン(受光部)は認識されるが送信に使うリモコンのコードが特殊で
中々見つからない(笑)
— posted by くま at 01:46 pm TrackBack [0]
Raspberry Pi 2 Model B へインストールOSをインストール...参考
2015/12/10
カテゴリー » Raspberry Pi 2 Model B
— posted by くま at 07:03 pm TrackBack [0]
Linux volumio 4.1.13-v7+ Raspberry Pi2 自動ログイン設定(2)
カテゴリー » Raspberry Pi 2 Model B
従来の方法では自動ログインが出来なくなった。
# cd /etc/systemd/system/
# ll
total 32
drwxr-xr-x 2 root root 4096 12月 8 04:58 bluetooth.target.wants
lrwxrwxrwx 1 root root 37 12月 8 04:58 dbus-org.bluez.service -> /lib/systemd/system/bluetooth.service
lrwxrwxrwx 1 root root 40 10月 9 2014 dbus-org.freedesktop.Avahi.service -> /lib/systemd/system/avahi-daemon.service
drwxr-xr-x 2 root root 4096 12月 8 03:53 getty.target.wants
drwxr-xr-x 2 root root 4096 12月 8 03:53 halt.target.wants
drwxr-xr-x 2 root root 4096 12月 8 04:46 multi-user.target.wants
drwxr-xr-x 2 root root 4096 12月 8 03:53 poweroff.target.wants
drwxr-xr-x 2 root root 4096 12月 8 03:53 reboot.target.wants
drwxr-xr-x 2 root root 4096 10月 27 2014 sockets.target.wants
lrwxrwxrwx 1 root root 31 12月 8 04:40 sshd.service -> /lib/systemd/system/ssh.service
drwxr-xr-x 2 root root 4096 12月 7 09:38 sysinit.target.wants
# ll getty.target.wants
total 0
lrwxrwxrwx 1 root root 34 12月 8 03:53 getty@tty1.service -> /lib/systemd/system/getty@.service
# cat /lib/systemd/system/getty@.service
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
---------省略-----------
[Service]
# the VT is cleared by TTYVTDisallocate
#ExecStart=-/sbin/agetty --noclear %I $TERM
ExecStart=-/sbin/agetty --autologin root --noclear %I 38400 linux
---------省略-----------
参考リンク:https://wiki.archlinuxjp.org/index.php/%E4%BB%AE%E6%83%B3%E7%AB%AF%E6%9C%AB%E3%81%AB%E8%87%AA%E5%8B%95%E3%83%AD%E3%82%B0%E3%82%A4%E3%83%B3
— posted by くま at 12:42 pm TrackBack [0]
Raspberry Pi2 自動ログイン設定
2015/12/9
カテゴリー » Raspberry Pi 2 volumio
googleで検索しても自動ログインの設定は
/etc/inittabで設定するという説明しかない。
しかしvolumioの最新版をインストールして
apt-get upgrade と apt-get dist-upgrade を実行後に更に
rpi-update を実行した超最新版にするとinittabは
リモートログインの時しか使われなくなる
続く(笑)
— posted by くま at 11:53 pm TrackBack [0]
Comments