Minecraft jar not marked as executable

79,106

The important part is in your message:

"The file '/home/mike/Downloads/minecraft.jar' is not marked as executable. If this was downloaded or copied from an untrusted source, it may be dangerous to run. For more details, read about the executable bit."

Command line

The command:

sudo chmod +x /home/mike/Downloads/minecraft.jar

will make it executable. Be sure to read the 2nd part of the message: make sure you got it from a trusted source.


GUI

If it is easier for you, you can also view the file with Nautilus and richt click it, open Properties, open the Permissions tab, and tick the box that says:

Execute: Allow executing file as a program.

enter image description here


Other

From a very reliable source I have been told you can also do:

java -jar /home/mike/Downloads/minecraft.jar
Share:
79,106
Mike D
Author by

Mike D

Updated on September 18, 2022

Comments

  • Mike D
    Mike D over 1 year

    I looked up several tutorials on how to install and they dont work. I do everything correctly but then i get this:

    The file '/home/mike/Downloads/minecraft.jar' is not marked as executable. If this was downloaded or copied from an untrusted source, it may be dangerous to run. For more details, read about the executable bit.

    I run the minecraft.jar with the Sun java runtime 6 but it doesnt work:/. Any help would be greatly appreciated!

    • user3549183
      user3549183 almost 10 years
      It still doesn't work. The box "mark as executable" unchecks as I click it
  • Nerdfest
    Nerdfest about 13 years
    Alternatively, he should also be able to use: "java -jar /home/mike/Downloads/minecraft.jar"
  • Ravindra Gullapalli
    Ravindra Gullapalli over 11 years
    I tried all suggestions except java command, nothing worked. Any other things to be considered?