タグ: raspberry

miniDLNA (Readymedia) 入れてみる

とりあえずはこれが目的なので、miniDLNA入れます。

$ sudo apt-get install minidlna

でOK。

$ sudo vi /etc/minidlna.conf

media_dir=V,/media/E/video
friendly_name=Raspberry DLNA
notify_interval=600

ぐらいの追記をして保存。

起動したいときは

sudo service minidlna start

DBの再構築をしたいときは

sudo service minidlna force-reload

で。

エディタをviに変更

ああ、Raspbianのデフォルトエディタはviではないのね。
カーソル移動がhjklだったりして慣れないので、viに変更します。

sudo apt-get install vim

で、vimを入れる。
入れるだけで終了です。

USB-HDD を追加

32GBのMicroSDしか無い状態なので、外付けでHDDを追加します。
用意したのは裸族の集合住宅5Bay
Raspberry側はUSB2.0だけど、気にしない。

接続してからfdiskで、接続場所を確認。

$ sudo fdisk -l

Disk /dev/mmcblk0: 31.5 GB, 31486640128 bytes
4 heads, 16 sectors/track, 960896 cylinders, total 61497344 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xa6202af7

        Device Boot      Start         End      Blocks   Id  System
/dev/mmcblk0p1            8192      122879       57344    c  W95 FAT32 (LBA)
/dev/mmcblk0p2          122880    61497343    30687232   83  Linux

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.


Disk /dev/sda: 3000.6 GB, 3000592982016 bytes
255 heads, 63 sectors/track, 364801 cylinders, total 5860533168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1  4294967295  2147483647+  ee  GPT
Partition 1 does not start on physical sector boundary.

こんなカンジ。

接続場所が確認できたら、今度はUUIDの確認。

$ sudo blkid /dev/sda1
/dev/sda1: UUID="e4da63ba-3a37-4970-a150-43e26f28a42b" TYPE="xfs"

ふむ。

UUIDが確認できたら、この情報を元にfstabへ追記。

$ sudo vi /etc/fstab

# Drive-1 3TB
UUID=e4da63ba-3a37-4970-a150-43e26f28a42b /media/D xfs defaults 0 0

こんなんで。

あとは

mount -a

でマウントさせればOK。

Raspbian 起動ディスクの容量

起動ディスク(と言っても Micro-SD だけど)を作成して「いざ起動!」してみる。

早速sshで入ってみると

Linux raspberrypi 3.18.11-v7+ #781 SMP PREEMPT Tue Apr 21 18:07:59 BST 2015 armv7l

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Wed Aug 19 13:34:40 2015 from katzmbp.local

NOTICE: the software on this Raspberry Pi has not been fully configured. Please run 'sudo raspi-config'

pi@raspberrypi ~ $

こんなカンジ。

とりあえず状況確認、ということで容量を見てみると

pi@raspberrypi ~ $ df -h
Filesystem      Size  Used Avail Use% Mounted on
rootfs          2.9G  2.4G  334M  89% /
/dev/root       2.9G  2.4G  334M  89% /
devtmpfs        460M     0  460M   0% /dev
tmpfs            93M  224K   93M   1% /run
tmpfs           5.0M     0  5.0M   0% /run/lock
tmpfs           186M     0  186M   0% /run/shm
/dev/mmcblk0p1   56M   19M   37M  34% /boot

おいおい!32GBのMicroSDだよ!?なんで3GB?どういうこと?

いろいろググると、とりあえずは書いてあるとおり
sudo raspi-config
をやるのが正しいらしい。

┌──────────────────┤ Raspberry Pi Software Configuration Tool (raspi-config) ├───────────────────┐
│                                                                                                                          │
│     1 Expand Filesystem              Ensures that all of the SD card storage is available to the OS                      │
│     2 Change User Password           Change password for the default user (pi)                                           │
│     3 Enable Boot to Desktop/Scratch Choose whether to boot into a desktop environment, Scratch, or the command-line     │
│     4 Internationalisation Options   Set up language and regional settings to match your location                        │
│     5 Enable Camera                  Enable this Pi to work with the Raspberry Pi Camera                                 │
│     6 Add to Rastrack                Add this Pi to the online Raspberry Pi Map (Rastrack)                               │
│     7 Overclock                      Configure overclocking for your Pi                                                  │
│     8 Advanced Options               Configure advanced settings                                                         │
│     9 About raspi-config             Information about this configuration tool                                           │
│                                                                                                                          │
│                                                                                                                          │
│                                 <Select>                                       <Finish>                                  │
│                                                                                                                          │
└─────────────────────────────────────────────────────────────────────────┘

一番上におもいっきり書いてあった。

設定変更して再起動後に見てみると、

pi@raspberrypi ~ $ df -h
ファイルシス   サイズ  使用  残り 使用% マウント位置
rootfs            29G  2.4G   26G    9% /
/dev/root         29G  2.4G   26G    9% /
devtmpfs         460M     0  460M    0% /dev
tmpfs             93M  224K   93M    1% /run
tmpfs            5.0M     0  5.0M    0% /run/lock
tmpfs            186M     0  186M    0% /run/shm
/dev/mmcblk0p1    56M   19M   37M   34% /boot

ふぅ、よかったよかった。