How could I bypass blocked files from "untrusted" sources? I am using 15.10 (Wily Werewolf)
Asked
Active
Viewed 1,293 times
3 Answers
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
You'reAGitForNotUsingGit
- 14,969
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.

kalenpw
- 754