1

I executed chmod 777 /var and now Ubuntu won't start, can anyone tell me what I did wrong? And if there is a way of going back?

Eric Carvalho
  • 55,453
Rayan
  • 11

1 Answers1

2

This is a security issue: inside /var are files that never are accepted when set to executable for "the whole world" (the 3rd 7 in your command).

If you did -not- use -R with that command this should fix it:

sudo chmod 755 /var

For future reference please read this:

Rinzwind
  • 309,379