54

Whenever I open my documents, all the folders in it are displayed with a lock icon. Therefore, I cannot delete any file or folder in it.

I tried changing the root access using sudo chmod user:directory/ but it fails. I am not able to delete or perform any file action with it.

What action should I perform to fix it?

Eric Carvalho
  • 55,453
Saket
  • 893

7 Answers7

91

Run the following to fix your home directory permissions:

sudo chown -R $USER: $HOME
Eric Carvalho
  • 55,453
37

sudo chmod 777 -R /path to folder you want to delete- This would give all permissions (Read, Write, Execute) to you

The permissions (in this case 777) are as follow:

  • 7 - Full (Read, Write & Execute)
  • 6 - read and write
  • 5 - read and execute
  • 4 - read only
  • 3 - write and execute
  • 2 - write only
  • 1 - execute only
  • 0 - none

First number change Ownership of file, second affect Group of users can access, and third refers to Others user.

Owner   Group   Other
  7       7       7

after changing the permission, try and delete the folder.

EsmaeelE
  • 425
  • 7
  • 16
Janmejay
  • 505
0

You should have a look at this answer on Super User. Adding on to this answer, you can also create a bash function like this:

# bash function for changing locked status of folders, pass folder name as command line argument
unlock() {
    chflags -R nouchg $1
}

You can put this function in your .bashrc (Linux) or .bash_profile (Mac) file and run source ~/.bashrc or source ~/.bash_profile to rebuild the bash file.

Chintan
  • 101
0

Open terminal and type

gksudo nautilus

Browse to the location of documents. Goto properties and set the permission for owner as well as group as read and write. Now try to delete the folder from another nautilus window (one without root privileges).

Don't forget to close that super user nautilus as soon as you don't need it any more!

guntbert
  • 13,475
learner
  • 591
0

This would happen probably because you downloaded something from the web. And you don't have the write access to the folders. If you are sure that the files are virus free, try the following command.

chmod -R +rw *

This will remove the lock icon from the nautilus.

0

I had this problem as I had set everything to chmod 755 to get back into my system after messing with /var permissions.

sudo chown -R $USER:$USER ~

solved it for me, eventually. I had to delete some files I'd downloaded first.

Eduardo Cola
  • 5,876
  • 3
  • 20
  • 33
0

Change the file permissions of lock file via CHMOD command:

user@pc:~$ sudo chmod 754 /var/lib/lock *

Note: 754 is access permission and path to the directory of lock file present if 754 doesn't, do try 777. Once done you can delete the file.

snoop
  • 4,110
  • 9
  • 41
  • 58