Linux Permissions and Security Cheat Sheet/Install SSH public key manually

Append a key to authorized_keys.

Section: Accounts Authentication and Access

Install SSH public key manually

bash
bash
cat id_ed25519.pub >> ~/.ssh/authorized_keys
Explanation

Ensure permissions on `~/.ssh` and `authorized_keys` are strict.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Accounts Authentication and Access
Test SSH daemon config
Validate SSH daemon configuration for syntax errors.
OpenIn sheetbashsame section
Query passwd database
Resolve user information through NSS.
OpenIn sheetbashsame section
Query group database
Resolve group entries through NSS.
OpenIn sheetbashsame section
Lock user password
Disable password authentication for a user.
OpenIn sheetbashsame section
Show password aging info
Inspect account password expiration details.
OpenIn sheetbashsame section
Safely edit sudoers
Open sudoers with syntax checking and locking.
OpenIn sheetbashsame section