Open enewhuis opened 1 year ago
% which photorec
/opt/homebrew/bin/photorec
# Verify PhotoRec was installed
echo -n "Checking for PhotoRec..."
photorec_filepath=/usr/bin/photorec
photorec_osx_filepath=/usr/local/bin/photorec
if [ -f "$photorec_filepath" ]; then
echo "found in $(dirname $photorec_filepath)"
elif [ -f "$photorec_osx_filepath" ]; then
echo "found in $(dirname $photorec_osx_filepath)"
else
echo "ERROR: PhotoRec not found, please install the testdisk package."
exit 1
fi
Possible quick fix in unix_setup.sh:
photorec_osx_filepath=$(which photorec)
Were you able to get this working with your Fix?
Yes but was unable to get it running properly due to the core plug-in not loading. I've been using Wineskin for now.
Possible quick fix in unix_setup.sh:
photorec_osx_filepath=$(which photorec)
This fix didn't work for me. Did Wineskin work well?
./install_application.sh -z ~/Downloads/autopsy-4.20.0.zip -i ~/autospy -j $(/usr/libexec/java_home -v 1.8)