2018-08-24 23:45:46 -04:00
|
|
|
# Downloading, installing, and configuring Moonfire NVR
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
This document describes how to download, install, and configure Moonfire NVR
|
|
|
|
on a Debian-based Linux system (such as Ubuntu or Raspbian).
|
|
|
|
|
|
|
|
(In principle, Moonfire NVR supports any POSIX-compliant system, and the main
|
|
|
|
author uses macOS for development, but the documentation and scripts are
|
|
|
|
intended for Linux.)
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
## Downloading
|
|
|
|
|
|
|
|
See the [github page](https://github.com/scottlamb/moonfire-nvr) (in case
|
2018-08-24 23:45:46 -04:00
|
|
|
you're not reading this text there already). You can download the
|
|
|
|
bleeding-edge version from the commandline via git:
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
$ git clone https://github.com/scottlamb/moonfire-nvr.git
|
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
## Building and installing from source
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
There are no binary packages of Moonfire NVR available yet, so it must be built
|
2018-08-24 23:45:46 -04:00
|
|
|
from source. To do so, you can follow either of two paths:
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
* Scripted: You will run some shell scripts (after preparing one or two files,
|
|
|
|
and will be completely done. This is by far the easiest option, in
|
|
|
|
particular for first time builders/installers. Read more in [Scripted
|
|
|
|
Installation](install-scripted.md).
|
|
|
|
* Manual: see [instructions](install-manual.md).
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
Moonfire NVR keeps two kinds of state:
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
* a SQLite database, typically <1 GiB. It should be stored on flash if
|
|
|
|
available.
|
2018-02-12 01:45:51 -05:00
|
|
|
* the "sample file directories", which hold the actual samples/frames of
|
|
|
|
H.264 video. These should be quite large and are typically stored on hard
|
|
|
|
drives.
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
(See [schema.md](schema.md) for more information.)
|
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
By now Moonfire NVR's dedicated user and database should have been created for
|
|
|
|
you. Next you need to create a sample file directory.
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
## Creating a sample file directory
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
### ...on a dedicated hard drive
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
If a dedicated hard drive is available, set up the mount point:
|
|
|
|
|
|
|
|
$ sudo vim /etc/fstab
|
2018-08-24 23:45:46 -04:00
|
|
|
$ sudo mkdir /media/nvr
|
|
|
|
$ sudo mount /media/nvr
|
|
|
|
$ sudo mkdir /media/nvr/sample
|
|
|
|
$ sudo chown moonfire-nvr:moonfire-nvr /media/nvr/sample
|
|
|
|
|
|
|
|
In the fstab you'd add a line similar to this:
|
|
|
|
|
|
|
|
/dev/disk/by-uuid/23d550bc-0e38-4825-acac-1cac8a7e091f /media/nvr ext4 defaults,noatime,nofail 0 2
|
|
|
|
|
|
|
|
You'll have to lookup the correct uuid for your disk. One way to do that is
|
2018-12-27 17:00:15 -05:00
|
|
|
via the following command:
|
2018-08-24 23:45:46 -04:00
|
|
|
|
|
|
|
$ ls -l /dev/disk/by-uuid
|
|
|
|
|
|
|
|
If you use the `nofail` attribute in `/etc/fstab` as described above, your
|
|
|
|
system will boot successfully even when the hard drive is unavailable (such as
|
|
|
|
when your external USB storage is unmounted). This is convenient, but you
|
|
|
|
likely want to ensure the `moonfire-nvr` service only starts when the mounting
|
|
|
|
is successful. Edit the systemd configuration to do so:
|
|
|
|
|
|
|
|
$ sudo vim /etc/systemd/system/moonfire-nvr.service
|
|
|
|
$ sudo systemctl daemon-reload
|
|
|
|
|
|
|
|
You'll want to add a line like `Requires=media-nvr.mount` to the `[Unit]`
|
|
|
|
section of the file.
|
|
|
|
|
|
|
|
### ...without a dedicated hard drive
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
If you don't have a dedicated hard drive available, simply create a directory
|
|
|
|
owned by the dedicated user. It's convenient to place it within the
|
|
|
|
installation's directory (typically `/var/lib/moonfire-nvr`):
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
$ sudo -u moonfire-nvr -H mkdir sample
|
|
|
|
|
|
|
|
## Completing configuration through the UI
|
|
|
|
|
|
|
|
Once setup is complete, it is time to add sample file directory and camera
|
|
|
|
configurations to the database.
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-03-03 09:41:15 -05:00
|
|
|
You can configure the system's database through a text-based user interface:
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
$ sudo -u moonfire-nvr moonfire-nvr config 2>debug-log
|
|
|
|
|
2018-02-12 01:45:51 -05:00
|
|
|
In the user interface,
|
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
1. add your sample file dir(s) under "Directories and retention".
|
|
|
|
2. add cameras under "Cameras and streams".
|
|
|
|
|
|
|
|
* There's a "Test" button to verify your settings directly from the add/edit
|
|
|
|
camera dialog.
|
|
|
|
|
|
|
|
* Be sure to assign each stream you want to capture to a sample file
|
|
|
|
directory and check the "record" box.
|
|
|
|
|
|
|
|
* `flush_if_sec` should typically be about 60. This causes the database to
|
|
|
|
be flushed when the first instant of a completed recording second is a
|
|
|
|
minute old. Lower values cause less video to be lost on power loss;
|
|
|
|
higher values reduce wear on the SSD holding the SQLite database.
|
2018-12-27 17:00:15 -05:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
3. Assign disk space to your cameras back in "Directories and retention".
|
2018-02-12 01:45:51 -05:00
|
|
|
Leave a little slack (at least 100 MB per camera) between the total limit
|
|
|
|
and the filesystem capacity, even if you store nothing else on the disk.
|
|
|
|
There are several reasons this is needed:
|
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
* The limit currently controls fully-written files only. There will be up
|
|
|
|
to two minutes of video per camera of additional video.
|
|
|
|
* The rotation happens after the limit is exceeded, not proactively.
|
|
|
|
* Moonfire NVR currently doesn't account for the unused space in the final
|
|
|
|
filesystem block at the end of each file.
|
|
|
|
* Moonfire NVR doesn't account for the space used for directory listings.
|
|
|
|
* If a file is open when it is deleted (such as if a HTTP client is
|
|
|
|
downloading it), it stays around until the file is closed. Moonfire NVR
|
|
|
|
currently doesn't account for this.
|
|
|
|
|
2018-12-27 17:00:15 -05:00
|
|
|
4. Add a user for yourself (and optionally others) under "Users". You'll need
|
|
|
|
this to access the web UI once you enable authentication.
|
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
## Starting it up
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-12-27 17:00:15 -05:00
|
|
|
Note that at this stage, Moonfire NVR's web interface is **insecure**: it
|
|
|
|
doesn't use `https` and doesn't require you to authenticate
|
|
|
|
to it. You might be comfortable starting it in this configuration to try it
|
|
|
|
out, particularly if the machine it's running on is behind a home router's
|
|
|
|
firewall. You might not; in that case read through [secure the
|
|
|
|
system](secure.md) first.
|
|
|
|
|
|
|
|
The following commands will start Moonfire NVR and enable it for following
|
|
|
|
boots, respectively:
|
2017-10-02 01:02:39 -04:00
|
|
|
|
|
|
|
$ sudo systemctl start moonfire-nvr
|
2018-08-24 23:45:46 -04:00
|
|
|
$ sudo systemctl enable moonfire-nvr
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-12-27 17:00:15 -05:00
|
|
|
The HTTP interface is accessible on port 8080; if your web browser is running
|
|
|
|
on the same machine, you can access it at
|
|
|
|
[http://localhost:8080/](http://localhost:8080/).
|
2017-10-02 01:02:39 -04:00
|
|
|
|
2018-08-24 23:45:46 -04:00
|
|
|
If the system isn't working, see the [Troubleshooting
|
|
|
|
guide](troubleshooting.md).
|
2018-12-27 17:00:15 -05:00
|
|
|
|
|
|
|
Once the web interface seems to be working, read through [securing Moonfire
|
|
|
|
NVR](secure.md).
|