0

How could I bypass blocked files from "untrusted" sources? I am using 15.10 (Wily Werewolf)

anonymous2
  • 4,298

3 Answers3

4

You need to give it the executable bit.

Run this command in terminal (ctrl+alt+t):

sudo chmod +x yourfle.jar

Then you can run it normally with:

java -jar yourfile.jar
1

Type in the terminal:

sudo chmod +x file.jar

This should fix the problem.

guntbert
  • 13,134
1

Although the terminal version already posted is easier for completeness sake, you can also right click the .jar in a file explorer go to Permissions and select allow executing file as program.

Image of checkbox

kalenpw
  • 744