|
|
|
|
|
by 9emE0iL18gxCqLT
4630 days ago
|
|
It runs fine in OpenJDK, at least in my case. (ArchLinux x86_64 https://www.archlinux.org/packages/extra/x86_64/jre7-openjdk...) Anyway, you can always download Java from the Oracle Downloads website and put it somewhere in your home directory and just define these variables in ~/.bashrc: export JAVA_HOME="/home/username/Software/Java/jdkx.y.z_w/" export JRE_HOME="$JAVA_HOME/jre" export JDK_HOME="$JAVA_HOME" export PHP_STORM_HOME="/home/username/Software/PHP/PhpStorm-x.y/" export PATH="$PATH:$JAVA_HOME/bin:$PHP_STORM_HOME/bin" . ~/.bashrc phpstorm.sh > /dev/null 2>&1 & echo "Enjoy the ride" |
|