sleuthkit / autopsy

Autopsy® is a digital forensics platform and graphical interface to The Sleuth Kit® and other digital forensics tools. It can be used by law enforcement, military, and corporate examiners to investigate what happened on a computer. You can even use it to recover photos from your camera's memory card.
http://www.sleuthkit.org/autopsy/
2.41k stars 597 forks source link

export JAVA_HOME=/usr/lib/jvm/... does not work in Linux UBUNTU #5498

Open beatbox13 opened 4 years ago

beatbox13 commented 4 years ago

The instructions at lines 21-22:

  1. Set JAVA_HOME % export JAVA_HOME=/usr/lib/jvm/bellsoft-java8-amd64 Do not work properly in Linux Ubuntu (18.04.3) I had to manually set JAVA_HOME using text editor:

sudo vi /etc/environment

and add line:

JAVA_HOME=/usr/lib/jvm/bellsoft-java8-amd64

marshalla99 commented 4 years ago

That "%" prompt suggests you're in a csh environment, which doesn't have export but uses setenv instead.

I don't think that's really an Autopsy problem.