change ovnership of folder linux code example
Example 1: ubuntu change directory owner
sudo chown -R $USER ~/.blabla
Example 2: linux change directory
// change directory in terminal
cd folder_name/subfolder_name
// go up one directory level
cd ..
// back to previous directory
cd -
// return to home directory
cd