pitsch
01-11-2008, 14:05
if you get the following error after installing the mlocate package:
updatedb: can not find group ` mlocate'
this might fix it:
#!/bin/sh
grep -s mlocate /etc/group || addgroup mlocate
chgrp mlocate /opt/var/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
make sure you have installed addgroup package...
check it:
updatedb -v
locate -S
updatedb: can not find group ` mlocate'
this might fix it:
#!/bin/sh
grep -s mlocate /etc/group || addgroup mlocate
chgrp mlocate /opt/var/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
make sure you have installed addgroup package...
check it:
updatedb -v
locate -S