Closed deldrid1 closed 11 years ago
@deldrid1 this looks like an issue that people have ran into with OpenJDK 1.6, as mentioned in the README. Can you try installing chronos using OpenJDK 1.7?
Managed to miss that little note. It took a while (I had some things still compiled with 1.6 that 1.7 didn't like) but eventually got it working. Thanks!
I am attempting to install Chronos on Ubuntu 12.04.2 LTS and so far have been unsuccessful.
I am following the instructions the install Chronos on Amazon Linux instructions with a few minor tweaks (just documenting them here in case they should be incorporated into the README).
First I had to change the command
export JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0.x86_64/
toexport JAVA_HOME=/usr/lib/jvm/java-1.6.0-openjdk-i386
.Second, I got errors when trying to make mesos. I found a fix at http://mail-archives.apache.org/mod_mbox/incubator-mesos-dev/201303.mbox/%3CCA+8RcoRzFA7e_PMuFOchnS12AXRe24nWu_WvKHKHroHwqqty1A@mail.gmail.com%3E and had to change line 278 of mesos/src/files/files.cpp from
length = std::min(length, sysconf(_SC_PAGE_SIZE) * 16);
tolength = std::min(length, (ssize_t) sysconf(_SC_PAGE_SIZE) * 16);
I'm at the step where I execute "mvn package". My Maven Version is:
Below is the truncated output. Any suggestions or bug fixes I can make to get this going?