1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

純正raspberryや他ubuntu系列にmotioneye入れる方法

Last updated at Posted at 2019-11-13

必要パッケージ類のインストール

sudo apt install -y python-pip curl libssl-dev libcurl4-openssl-dev libjpeg-dev

基盤ソフトを入れる

sudo apt install -y motion

motioneyeのインストール

sudo pip install motioneye

motionの設定ファイル

mkdir -p /etc/motioneye
cp /usr/local/share/motioneye/extra/motioneye.conf.sample /etc/motioneye/motioneye.conf

motionのメディアディレクトリ

mkdir -p /var/lib/motioneye

initスクリプトの追加とmotionEyeサーバ起動

cp /usr/local/share/motioneye/extra/motioneye.systemd-unit-local /etc/systemd/system/motioneye.service
systemctl daemon-reload
systemctl enable motioneye
systemctl start motioneye

motionEyeをアップグレード方法

sudo pip install motioneye --upgrade
sudo systemctl restart motioneye

ブラウザからアクセス方法

http://(インストールしたマシンのIPアドレス):8765/
初回ログイン
Usename: admin
Password: (なし)

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?