I ran chown -R root:root *
by mistake in my home folder when I had root privilege (actually I was supposed to do that in other folder :-/) How do I revert back?
This is not duplicate of what it is showing up. I don't have any problem with .gvfs
; folders that were affected were Desktop, Documents, Downloads, Music, Pictures, and Videos. By default, shell globbing *
does not include hidden files.
chown ...
? If all of your files where owned by you, simplysudo chown -R youruser:yourgroup *
. You can have to trim manually things afterward. There is really no "undo" for that command. – Rmano Apr 12 '15 at 10:15chown
, pardon me for the error – Alex Jones Apr 12 '15 at 10:17home
folder sosudo chown -R edward:edward *
will save to run ? – Alex Jones Apr 12 '15 at 10:17*
does not match dot files, and if you have any file not owned by you in your home will be probably a dot file... – Rmano Apr 12 '15 at 10:29/
, or on/var
or/etc
, and you probably will need to reinstall. – Rmano Apr 12 '15 at 10:31.gvfs
i dont think its a duplicate – Alex Jones Apr 12 '15 at 14:03