Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ubuntu 18.04 /var/lib/snapd has 'other' write 40777

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?

like image 946
James Avatar asked Jun 25 '18 15:06

James


3 Answers

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

like image 139
Sven Avatar answered Nov 13 '22 22:11

Sven


In fact, to resolve the problem for all the applications related snap you must do:

sudo chmod 755 /
like image 43
poramo Avatar answered Nov 13 '22 22:11

poramo


I was face "/has 'other' write 40777" problem when try to open vscode from terminal. That was fixed by "sudo chmod 755 /" command.

like image 4
devsazedur Avatar answered Nov 14 '22 00:11

devsazedur