Raspberrypi omv: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
Line 96: Line 96:
== Plugins ==
== Plugins ==
=== owncloud ===
=== owncloud ===
설정한 owncloud 로 접속 시도시, 다음과 같은 오류가 나타나는 경우가 있다.
<pre>
You are accessing the server from an untrusted domain.
Please contact your administrator.
If you are an administrator of this instance, configure the "trusted_domain" setting in config/config.php.
An example configuration is provided in config/config.sample.php.
</pre>
이는 owncloud 설정 중, trusted_domains 항목을 설정하지 않아서인데, omv UI 에서는 설정하는 항목을 찾지 못했다.
직접 파일을 수정해야 한다. 아래의 항목에 있는 파일을 열고, trusted_domains 항목에 원하는 네트워크를 입력해야 한다.
<pre>
/var/www/owncloud/config/config.php
</pre>


=== transmissionbt ===
=== transmissionbt ===

Revision as of 14:46, 7 August 2016

Overview

Raspberry pi OMV(Open Media Vault) 내용 정리.

Basic

Facilities

다음의 기능들이 가능해야 한다.

  • RAID 1
  • 내부/외부 NAS 접속
  • 네트워크 드라이브 설정 가능
  • 사용자 단위 디렉토리 지정(Permission 적용)
  • 토렌트 데몬 적용
  • Cron 작업 설정(외부 사이트 백업 작업)
  • 24 hours working

Hardware

다음의 사양으로 NAS를 구성한다. RAID 1 을 사용할 예정이므로 2베이 스토리지를 구했다.

  • Controller : Raspberrypi 3(4GB micro sd card)
  • Storage : 이지넷유비쿼터스 NEXT-702U3 RAID

Storage

장기간 미사용시, 슬립모드가 지원되는 제품을 구매할 예정이었으나, 해당 제품이 슬립모드 이후 다시 작동이 안된다는 리뷰가 있어서 일반 2Bay 스토리지 중 가장 저렴한 제품으로 선택함.

Installation

Download

Raspberry pi NAS 를 위한 배포본이 있다. Open Media Vault. 아래의 링크에서 다운로드가 가능하다.

이미 다른 배포본이 설치된 상태에서 Open Media Vault 를 설치하고 싶다면 아래를 참조하자.

Install

먼저 umount 를 시켜야 한다. <source lang=bash> $ umount /dev/mmcblk0p $ umount /dev/mmcblk0p1 $ umount /dev/mmcblk0p2 $ umount /dev/mmcblk0p3 </source>

파일을 dd 명령어로 입력하면 된다. <source lang=bash> $ dd bs=4M if=omv_2.2.5_rpi2_rpi3.img of=/dev/mmcblk0 </source>

Settings

Start

OMV 는 웹 인터페이스를 제공한다. 단, Apache 가 아니라 nginx 로 구동된다. <source lang=bash> $ sudo service nginx start </source>

Torrent

24시간 Torrent 머신을 위해서는 다음 패키지 설치가 필요하다. <source lang=bash> $ sudo apt-get install transmission transmission-daemon </source>

Auto remove

토렌트 다운로드 완료 후, 자동 삭제 스크립트<ref>http://goedonthouden.com/2013/04/21/transmission-daemon-auto-remove-torrents/</ref>이다. 별다른 점은 없고, transmission 에 접속해서 다운로드 완료된 토렌트를 찾아 삭제하는 스크립트이다. cron 이나, 다른 별도의 툴을 이용하여 매번 스크립트를 실행해 주어야 한다.

<source lang=bash> $ cat removecompletedtorrents.sh

  1. !/bin/sh

TORRENTLIST=`transmission-remote --auth=user:password --list | sed -e '1d;$d;s/^ *//' | cut --only-delimited --delimiter=' ' --fields=1`

for TORRENTID in $TORRENTLIST do echo "* * * * * Operations on torrent ID $TORRENTID starting. * * * * *"

DL_COMPLETED=`transmission-remote --auth=user:password --torrent $TORRENTID --info | grep "Percent Done: 100%"` if [ "$DL_COMPLETED" != "" ]; then echo "Torrent #$TORRENTID is completed." echo "Removing torrent from list." transmission-remote --auth=user:password --torrent $TORRENTID --remove else echo "Torrent #$TORRENTID is not completed. Ignoring." fi echo "* * * * * Operations on torrent ID $TORRENTID completed. * * * * *" done </source>

cron job에 추가해주면 된다. 매 1분마다 동작한다.

* * * * * root ../../bin/removecompletedtorrents.sh

Backup

sftp download 후, 기존 파일 삭제.

Plugins

owncloud

설정한 owncloud 로 접속 시도시, 다음과 같은 오류가 나타나는 경우가 있다.

You are accessing the server from an untrusted domain.

Please contact your administrator. 
If you are an administrator of this instance, configure the "trusted_domain" setting in config/config.php. 
An example configuration is provided in config/config.sample.php.

이는 owncloud 설정 중, trusted_domains 항목을 설정하지 않아서인데, omv UI 에서는 설정하는 항목을 찾지 못했다.

직접 파일을 수정해야 한다. 아래의 항목에 있는 파일을 열고, trusted_domains 항목에 원하는 네트워크를 입력해야 한다.

/var/www/owncloud/config/config.php

transmissionbt

See also

References

<references />