From 1e9e3ce6d7b7cd8dbee3a6de3b8e3574aa1456f3 Mon Sep 17 00:00:00 2001 From: Greg DiCristofaro <gregd@basistech.com> Date: Wed, 14 Sep 2022 11:23:49 -0400 Subject: [PATCH] fixes --- Running_Linux_OSX.txt | 27 --------------------------- build.xml | 6 +++++- 2 files changed, 5 insertions(+), 28 deletions(-) delete mode 100644 Running_Linux_OSX.txt diff --git a/Running_Linux_OSX.txt b/Running_Linux_OSX.txt deleted file mode 100644 index 2a438728d3..0000000000 --- a/Running_Linux_OSX.txt +++ /dev/null @@ -1,27 +0,0 @@ -* Troubleshooting * - -- If you see something like "Cannot create case: javafx/scene/paint/Color" it is an indication that Java FX - is not being found. - Confirm that the file $JAVA_HOME/jre/lib/ext/jfxrt.jar exists. If it does not exist, return to the Java - setup steps above. -- If you see something like "An illegal reflective access operation has occurred" it is an indication that - the wrong version of Java is being used to run Autopsy. - Check the version of Java reported in the ~/.autopsy/dev/var/log/messages.log file. It should contain lines that looks like: - Java; VM; Vendor = 1.8.0_232; OpenJDK 64-Bit Server V 25.232-b10; BellSoft - Runtime = OpenJDK Runtime Environment 1.8.0_232-BellSoft-b10 - Java Home = /usr/lib/jvm/bellsoft-java8-amd64/jre - - If your messages.log file indicates that Java 8 is not being used: - (a) confirm that you have a version of Java 8 installed and - (b) confirm that your JAVA_HOME environment variable is set correctly: - % echo $JAVA_HOME - -- If you see something like "cannot be opened because the developer cannot be verified." it is an indication - that Gatekeeper is running and is stopping a file from being executed. To fix this open a new terminal window - and enter the following command "sudo spctl --master-disable", you will be required to enter your password. - This will allow any program to be be downloaded from anywhere and executed. - -* Limitations (Updated May 2018) * -- Timeline does not work on OS X -- Video thumbnails are not generated (need to get a consistent version of OpenCV) -- VHD and VMDK files not supported on OS X diff --git a/build.xml b/build.xml index 88416827a0..036df7e383 100644 --- a/build.xml +++ b/build.xml @@ -146,8 +146,12 @@ <copy file="${basedir}/README.txt" tofile="${zip-tmp}/${app.name}/README.txt"/> <copy file="${basedir}/LICENSE-2.0.txt" tofile="${zip-tmp}/${app.name}/LICENSE-2.0.txt"/> <copy file="${basedir}/NEWS.txt" tofile="${zip-tmp}/${app.name}/NEWS.txt"/> - <copy file="${basedir}/Running_Linux_OSX.txt" tofile="${zip-tmp}/${app.name}/Running_Linux_OSX.txt"/> + <copy file="${basedir}/Running_Linux_OSX.md" tofile="${zip-tmp}/${app.name}/Running_Linux_OSX.md"/> <copy file="${basedir}/unix_setup.sh" tofile="${zip-tmp}/${app.name}/unix_setup.sh"/> + <copy flatten="false" todir="${zip-tmp}/${app.name}/linux_macos_install_scripts"> + <fileset dir="${basedir}/linux_macos_install_scripts"/> + </copy> + <copy file="${basedir}/Tools/ManifestTool/ManifestTool.exe" todir="${zip-tmp}/${app.name}/bin"/> <copy file="${basedir}/icons/icon.ico" tofile="${zip-tmp}/${app.name}/icon.ico" overwrite="true"/> -- GitLab