LoginSignup
1
0

More than 5 years have passed since last update.

Synologyでlocateを使う。

Last updated at Posted at 2017-07-29

前提

  • opkgを使えること。

使うまで

インストール
$ sudo opkg install mlocate

まだ使えない
$ locate hogehoge
locate: can not stat () `/opt/var/mlocate/mlocate.db': No such file or directory

updatedbするが、できない
# updatedb
updatedb: can not find group `mlocate'

mlocateグループの追加
# synogroup -add mlocate

mlocateグループへ設定
# chmod g=rx,o= /opt/var/mlocate
# chgrp mlocate /opt/bin/locate
# chmod g+s,go-w /opt/bin/locate
# touch /opt/var/mlocate/mlocate.db
# chgrp mlocate /opt/var/mlocate/mlocate.db

updatedb
# updatedb

使える
$ locate hogehoge

参考文献

How to fix “updatedb: can not find group ` mlocate'” on entware?
https://unix.stackexchange.com/questions/328510/how-to-fix-updatedb-can-not-find-group-mlocate-on-entware

1
0
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
0