Linux Installation Guide

This guide only applies to LINUX users. If you don't use a variation of the operating system LINUX, this guide DOES NOT apply to you. Turn back now. Secondary note, if you can't work out how to do the following steps, you simply shouldn't be using Linux. Install a different OS (windows) instead.

  1. Add -noverify to your MC launch arguments. This may immediately fix the bug. If not, go to step 2.

  2. Execute the following commands (from @real fucklett)

ls /lib | grep libc.so

Which should return something like

libc.so 
libc.so.6

Then make a backup of the libc.so file by doing

sudo mv /lib/libc.so /lib/libc.so.bak

Now you make the symlink by doing

sudo ln -sf /lib/libc.so.6 /lib/libc.so

To verify this run

cat /lib/libc.so

And if returns a bunch of gibberish then success

Last updated