Content: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Background: Slate Blackcurrant Watermelon Strawberry Orange Banana Apple Emerald Chocolate Marble
Pattern: Blank Waves Notes Sharp Wood Rockface Leather Honey Vertical Triangles
Welcome to TerraFirmaCraft Forums

Register now to gain access to all of our features. Once registered and logged in, you will be able to contribute to this site by submitting your own content or replying to existing content. You'll be able to customize your profile, receive reputation points as a reward for submitting content, while also communicating with other members via your own private inbox, plus much more! This message will be removed once you have signed in.

  • Announcements

    • Dries007

      ATTENTION Forum Database Breach   03/04/2019

      There has been a breach of our database. Please make sure you change your password (use a password manager, like Lastpass).
      If you used this password anywhere else, change that too! The passwords themselves are stored hashed, but may old accounts still had old, insecure (by today's standards) hashes from back when they where created. This means they can be "cracked" more easily. Other leaked information includes: email, IP, account name.
      I'm trying my best to find out more and keep everyone up to date. Discord (http://invite.gg/TerraFirmaCraft) is the best option for up to date news and questions. I'm sorry for this, but the damage has been done. All I can do is try to make sure it doesn't happen again.
    • Claycorp

      This forum is now READ ONLY!   01/20/2020

      As of this post and forever into the future this forum has been put into READ ONLY MODE. There will be no new posts! A replacement is coming SoonTM . If you wish to stay up-to-date on whats going on or post your content. Please use the Discord or Sub-Reddit until the new forums are running.

      Any questions or comments can be directed to Claycorp on either platform.
Lisa

[Solved] Crashing on Debian with OpenJDK

5 posts in this topic

Have you read, understood, and followed all of the rules listed in large text at the top of the support forum? (Yes/No): Yes
Answering "no" to the above question will result in your post being deleted.
 
TFC Version #: 0.79.28
Forge Version #:  10.13.4.1558
Please note that an actual number must be provided for both of the above fields.
Simply saying "current" or "latest" will result in your post being locked, due to the fact that in a large number of cases, users who say they are using the "latest" or "current" version are actually using an outdated version.

 
SSP/SMP (SinglePlayer/MultiPlayer): SSP
 
Have you deleted your config files or are using default configs and are still able to reproduce this bug? (Yes/No): Yes
If you answered no to the above question, delete all 3 TFC config files (TFCCrafting, TFCConfig, TFCOre), do NOT edit or add to any of the files, and try to reproduce the bug.
This question is here because many bugs are caused by mistakes in config files. If you are unable to delete your edited config files, please provide a list of the config options you have changed.

 
Do you have any mods other than Forge and TFC installed? (Yes/No): No
If yes, which mods? 
 
If you have Optifine or Cauldron installed, can you still reproduce the bug after uninstalling them? (Yes/No): N/A
If you answered no to the above question, uninstall Optifine/Cauldron and try to reproduce the bug.
Both Optifine and Cauldron edit the base classes of forge that TFC uses. Because of this, we cannot officially support any issues that happen only when these mods are installed. In the majority of cases, TFC is not causing the bug; Optifine/Cauldron is and TFC can do nothing to fix it.
All bug reports should have an answer of "Yes" to this question. If you refuse to uninstall Optifine/Cauldron, and cannot reproduce the bug when the mods are not installed, do not bother making a bug report, as it will be locked and ignored.

 
Pastebin.com link of the Crash Report: http://pastebin.com/5EWYreKE

Description: Seems to crash when trying to load the blocks texture. My partner 'somehow' managed to get it running (he can't remember what he did to get that result), I opened a new world, noticed that the texture for dirt was missing, closed, haven't been able to get back in. I need help. :(
 

0

Share this post


Link to post
Share on other sites

Unfortunately that is a Java crash report, and not a Minecraft one. The very little Minecraft stack trace that is in it is 100% vanilla, so there's no way to know that the problem is actually with TFC, or what's causing it.

 

A quick google search of the exception at the top of the report you provided is all showing that it's most likely a hardware error specifically within your machine, possibly that your memory is going bad. You could also maybe just try updating to Java 8 and see if that resolves it.

0

Share this post


Link to post
Share on other sites

something like that happened to me,  remove optifine or if you want to keep optifine check your FOV and put it to normal or 100 it should be fix

 

thats for the transperent grass, the crash, i dont know

Edited by ZombieDave111
0

Share this post


Link to post
Share on other sites

Lisa, tell us if mc launches with JUST forge installed. no TFC

0

Share this post


Link to post
Share on other sites

Four years of hosting Minecraft servers has taught us an important lesson: Don't ever use OpenJDK for running Minecraft.

 

This will go against all sense of 'openness' that you will find while running Debian, but I strongly recommend installing and using Oracle Java instead.

 

If you decide to try this keep in mind that Oracle needs you to accept their eula before downloading. You can do this by modifying the URL with which you download the jdk. Something like this should work:

wget --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u73-b02/jdk-8u73-linux-x64.tar.gz

Since Oracle Java is not part of the Debian distribution you should create the following directory for it:

mkdir /opt/jdk

and extract the file you downloaded there:

tar -zxf jdk-8u73-linux-x64.tar.gz -C /opt/jdk

 

Then set Oracle as the default JVM with:

update-alternatives --install /usr/bin/java java /opt/jdk/jdk<YourVersion something like 1.8.0_73>/bin/java 100update-alternatives --install /usr/bin/javac javac /opt/jdk/jdk<YourVersion something like 1.8.0_73>/bin/javac 100

If all went well you can verify your installation with:

update-alternatives --display javaupdate-alternatives --display javacorjava -version

Updating is done as follows:

update-alternatives --remove java /opt/jdk/jdk.old.version/bin/javaupdate-alternatives --remove javac /opt/jdk/jdk.old.version/bin/javacrm -rf /opt/jdk/jdk.old.version

Good luck :)

 

 

*edit*

Added extract command in case someone reads this and doesn't yet know how.

Edited by InsaneJ
4

Share this post


Link to post
Share on other sites