From 196a2cab6b11a1f02fdd861b86e52ba48fb368de Mon Sep 17 00:00:00 2001 From: zoe1 Date: Tue, 20 Jul 2021 17:26:02 +0200 Subject: [PATCH] permissions plural --- en/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/index.html b/en/index.html index 6f5685f..f61a31e 100644 --- a/en/index.html +++ b/en/index.html @@ -439,9 +439,9 @@ $ gpg --export -a [keyid] > my_public_key.asc
Like every other file or folder, gpg keys are subject to permissions. If these are not set correctly, your system may not be accepting your keys. You can follow the next steps to check, and update to the right permissions.

# Check your permissions: ls -l ~/.gnupg/*

-# Set permissions to read, write, execute for only yourself, no others. This is the recommended permission for your folder.
+# Set permissions to read, write, execute for only yourself, no others. These are the recommended permissions for your folder.
You can use the code chmod 700 ~/.gnupg

-# Set permissions to read and write for yourself only, no others. This is the recommended permission for the keys inside your folder.
+# Set permissions to read and write for yourself only, no others. These are the recommended permissions for the keys inside your folder.
You can use the code: chmod 600 ~/.gnupg/*

If you have (for any reason) created your own folders inside ~/.gnupg, you must also additionally apply execute permissions to that folder. Folders require execution privileges to be opened. For more information on permissions, you can check out this detailed information guide.


-- 2.25.1