Reputation: 559
Tried to start Calculator in Ubuntu, but received the following message:
/var/lib/snapd has 'other' write 40777
Not sure what that means. I just want to start Calculator. Weird. Any ideas?
Upvotes: 29
Views: 32687
Reputation: 51
I was face "/has 'other' write 40777" problem when try to open vscode from terminal. That was fixed by "sudo chmod 755 /" command.
Upvotes: 5
Reputation: 572
In fact, to resolve the problem for all the applications related snap you must do:
sudo chmod 755 /
Upvotes: 29
Reputation: 715
Happened to me also. I changed the permissions of /var/lib/snapd from 777 to 755, so just do:
sudo chmod -R 0755 /var/lib/snapd
Upvotes: 60