Skip to main content

Minecraft on Ubuntu; Finding and fixing errors

Now that Minecraft is outta beta, at version 1.0.0, it's time to get it running on Ubuntu with all the mods. The standard 1.0 version runs fine in Ubuntu 11.10, but I'm having some trouble with ModLoader, and therefore all the mods that in turn depend on ModLoader.

My first task is to run Minecraft without any errors. To start I installed and ran Minecraft on Ubuntu using Alloc's Easy Minecraft Installer. This creates a handy desktop icon on the account I used to run the install script. Of course, using this icon precludes seeing any error output from the program. Once you've installed Minecraft using the script, you can copy the icon file to any other desktop directory, and then update the command line with the name of the new home directory. Then, set the properties of the shortcut file to "executable"

To review the error output, I open Terminal and paste in the command:

java -jar /home/[myhomedir]/.minecraft/minecraft.jar

where [myhomedir] is the name of my home directory.

Or, you can use the tilde ("~"):

java -jar ~/.minecraft/minecraft.jar

This works in Terminal, but not in the destop icon command field.

My first error is:

GL ERROR Pre render 1281: Invalid value

To resolve this error, in ~/.minecraft/options.txt, I set advancedOpengl:true (this was originally false)


Now I get:

Loading: net.java.games.input.LinuxEnvironmentPlugin
Failed to open device (/dev/input/event3): Failed to open device /dev/input/event3 (13)

...

down to

/dev/input/event0

The fix for this, from the World of Minecraft support forum, is the following Terminal command:

 sudo chmod go=u /dev/input/event*

This worked; I now see:

Loading: net.java.games.input.LinuxEnvironmentPlugin
Linux plugin claims to have found 4 controllers

So, no errors!

Comments

Popular posts from this blog

Joomla 1.5 Directory Status: Writeable

[UPDATED] Joomla 1.5 is acting flaky on one of our installations because the directories are set to ‘unwriteable’. To see the their current state, log in as Super Administrator and go to Help > System Info > Directory Permissions . Elsewhere, it's been suggested that the specified directories must be set to “world-writeable” (777). This works, but it is a very bad idea , since it means anyone can change your files! Not cool. Fixing Security with User and Group Settings To perform these changes, you need shell (command line) access to your server. If you don't have it, you can beg your host to make these changes for you, or switch to a Joomla-friendly host. I'm going to assume that you are using a LAMP (Linux/Apache/MySQL/PHP) server because if you're not, then ... well, these instructions should work in principle, but the specifics for your server may be quite different. Here's the issue: you, the FTP user, need full access to your files. So does Joomla,...

Virus scan Windows using a Linux live CD

[There's been quite a bit of interest in this post and I've expanded on it quite a bit. Please post any comments or questions to help me improve this guide. - Neil] Keith and I have both run into situations where we want to recover a Windows computer by cleaning it up with a Linux Live (bootable) CD distro. This offers several advantages to cleaning up an infected or compromised computer by booting into Windows: It prevents the malware, if it exists, from jumping from the infected computer or partition we are trying to fix to the repair partition or boot medium. If we boot from a CD, there's actually no way to alter the boot medium, since it's read-only. Naturally, we started with Knoppix -- download it here . Installing and scanning with F-Prot is covered in this Knoppix.net discussion thread, Virus Scan from LiveCD , which describes how to install F-Prot from the command line using apt-get. Also, In Knoppix 5.1, you can boot from the Knoppix CD and install F-P...

How to use the NeoVim AppImage in VSCode on Linux

Getting the latest version of NeoVim installed and running correctly on my Pop OS Linux installation turns out to be surprisingly difficult. The PopShop app store installs either a very old version of NeoVim, or an up-to-date version that's sandboxed -- both options don't work with VSCode. I'm using the Debian & Ubuntu derived Pop OS on my IdeaPad 5. This means if I want to install software, I can use apt -- but that will only install software packages that are in the distribution's package repositories. Usually that's not a problem, but sometimes the version of the software I want to install is not as current as I might like. That's exactly the problem I have right now with NeoVim. sudo apt install neovim # version 0.6.1-3 I want to use NeoVim as my editor in VSCode with the excellent VSCode Neovim plugin. But, as of this writing, the plugin requires version 0.9 or greater, so I need to install a more current version -- or even better, the latest ...