On 2022-06-08 06:12, rhkramer@gmail.com wrote:
Should have been:
# chown -R <username>.<groupname> /home/<user>/.run/user/1000/geany
Another tip to avoid errors—*never* use the angle brackets for anything on the command line, unless that is exactly what you want.
Too many chances for disaster.
If you really feel like you need to mark them, use ${} or similar:
$ ls -l /home/${USER}/.run/user/1000/geany
But perhaps all caps can work too.
-Mike