mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
fixes
This commit is contained in:
parent
e21c45e9f3
commit
1e9e3ce6d7
@ -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
|
|
@ -146,8 +146,12 @@
|
|||||||
<copy file="${basedir}/README.txt" tofile="${zip-tmp}/${app.name}/README.txt"/>
|
<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}/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}/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 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}/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"/>
|
<copy file="${basedir}/icons/icon.ico" tofile="${zip-tmp}/${app.name}/icon.ico" overwrite="true"/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user