Permission error with v0.8.0 #205
-
After bfd0667, I always get a permission error. Command
Log
Info
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
This is not a steamguard-cli bug. There's something wrong with your file permissions. What are the permissions on the ls -l -R ~/.config/steamguard-cli/ You can set file permissions with chmod chmod -R u+rw ~/.config/steamguard-cli/ You can set the file owner with chown chown -R $USER:$USER ~/.config/steamguard-cli/ |
Beta Was this translation helpful? Give feedback.
-
You're right, it was an issue with the file permissions. I moved the file from an old backup over to my new machine, thus they got screwed up. Anyway, thanks for the help. |
Beta Was this translation helpful? Give feedback.
This is not a steamguard-cli bug. There's something wrong with your file permissions.
What are the permissions on the
/home/user/.config/steamguard-cli/
directory? You need to have read and write permissions.ls -l -R ~/.config/steamguard-cli/
You can set file permissions with chmod
chmod -R u+rw ~/.config/steamguard-cli/
You can set the file owner with chown