In 2nd line here I see 'u001' then 'root', 1st is owner as I understand, but what is 2nd ?
drwx------ 13 u001 u001 4096 jun 21 03:29 .cache
drwxr-xr-x 18 u001 root 4096 jun 21 03:30 .config
drwxr-xr-x 2 u001 u001 4096 jun 21 02:54 Desktop
How could I change it to u001 ?
sudo chown -R u001:u001 .config/
should change that folder and all of it contents to the proper ownership. See https://askubuntu.com/questions/6723/change-folder-permissions-and-ownership Chances are an application that writes into the~/.config
folder was ran assudo
causing it to change the group owner. – Terrance Jun 20 '18 at 23:59