0

I ran netbeans through the terminal with sudo and now everytime I open it I get this message:

Netbeans message

it also takes longer to load.

muru
  • 207,228
Mario
  • 3
  • 3

1 Answers1

0

When you ran it with sudo, you caused it to change the ownership of its config files to root. This is a common problem when running graphical programs with sudo.

The fix is simple enough, just change the ownership back. Open a terminal and run:

sudo chown -R mario:mario /home/mario/.netbeans
terdon
  • 104,119