Erro de Java: Núcleo despejado falhou! Tente fazer ulimit -c unlimited antes de iniciar o java na próxima vez!

0

Estou tentando jogar Minecraft, mais especificamente Feed The Beast (Uma variação mod) e ao tentar carregar, ele falha com o seguinte:

Core dumped failed! Try doing ulimit -c unlimited before you start java next time!

É muito chato quando eu não lembro de fazer isso, então eu tenho que esperar muito tempo para carregar. Existe alguma maneira de corrigir permanentemente este erro de Java?

    
por David 14.08.2015 / 12:32

1 resposta

2

Faça o que diz. Em uma execução de terminal, ulimit -c unlimited antes de começar a jogar.

De man ulimit :

User limits - limit the use of system-wide resources. A bash built-in command that provides control over the resources available to the shell and to processes started by it, on systems that allow such control

Syntax
      ulimit [-acdfHlmnpsStuv] [limit]

Options

   -c   The maximum size of core files created.

Se você quiser uma solução permanente, edite /etc/security/limits.conf e altere a primeira linha para:

#<domain> #<type> #<item> #<value>
*         soft    core    unlimited
    
por Ron 14.08.2015 / 12:41