2

I am attempting to open a .jar file with java 8 but it gives me an error message asking for admin privileges:

Please start the Authenticator with admin privileges

I am completely new to this type of issue, so my first reaction was to run sudo java -jar /home/sethlord/Downloads/Authenticator/Authenticator.jar in a terminal, but it gave me the same error message. Any fix?

terdon
  • 98,183
  • 15
  • 197
  • 293
Lokii
  • 21
  • 1
  • 1
  • 3

1 Answers1

3

The classical method would be ...

sudo -i
java -jar /home/sethlord/Downloads/Authenticator/Authenticator.jar

If you really really need "root"

sudo -su
java -jar /home/sethlord/Downloads/Authenticator/Authenticator.jar

But try to avoid that since it logs notices to user "root" and not the "sudo" account.

Rinzwind
  • 293,910
  • 41
  • 570
  • 710