I have installed cuckoo and all the dependencies and have also created VM using virtual box.
I am getting an error "OSError: /usr/lib/libyara.so: cannot open shared object file: No such file or directory"
whenever i try to run cuckoo.py using python
I have tried searching in all forums and also tested whether yara is installed properly. It seems to be working fine using terminal. Checked that libyara.so is present in /usr/local/lib and python or cuckoo is checking in /usr/lib/
Also tried updating local library using
sudo echo "/usr/local/lib" >> /etc/ld.so.conf
sudo ldconfig
I have installed yara using tar ball. Have also used --enable-cuckoo --enable-magic args too.
Where might have I gone wrong?
Configuration of my system: Ubuntu 16.04; python 2.7; yara 3.4.0
your script is looking for the lib in /usr/lib/libyara.so but you said the lib is in /usr/local/lib
i'd create as softlink to fix this.
ln -s /usr/local/lib/libyara.so /usr/lib/libyara.so