change owner of folder in linux for all uers code example
Example 1: take ownership directory linux
sudo chown -R $USER ~/.blabla
Example 2: how to change owner of all files in a directory
# Using the '*' wildcard you can include all other files and dirs
# Only us as many wildcards as you have layers in you directory
sudo chown <username:username> <directory_name>/*/*