Unix and Linux Discussions Tagged with ssh |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
9,967 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
74,319 |
Shell Programming and Scripting |
|
|
|
1 |
5,468 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,728 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
22,941 |
Shell Programming and Scripting |
|
|
|
10 |
23,267 |
Windows & DOS: Issues & Discussions |
|
|
|
5 |
16,468 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
3,154 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
10,182 |
Shell Programming and Scripting |
|
|
|
10 |
10,207 |
Shell Programming and Scripting |
|
|
|
4 |
3,516 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
7,869 |
UNIX for Beginners Questions & Answers |
|
|
|
11 |
20,836 |
Shell Programming and Scripting |
|
|
|
3 |
4,433 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
13,975 |
Cybersecurity |
|
|
|
8 |
10,916 |
Shell Programming and Scripting |
|
|
|
5 |
19,471 |
AIX |
|
|
|
5 |
6,431 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
16,502 |
Linux |
|
|
|
6 |
7,363 |
Shell Programming and Scripting |
|
|
|
8 |
12,805 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
38,968 |
Solaris |
|
|
|
0 |
6,033 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,542 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
6,927 |
Solaris |
|
|
|
10 |
15,773 |
Red Hat |
|
|
|
5 |
6,010 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,873 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
5,200 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
3,753 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
9,397 |
Shell Programming and Scripting |
|
|
|
2 |
5,073 |
Shell Programming and Scripting |
|
|
|
8 |
4,599 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
5,884 |
AIX |
|
|
|
2 |
2,657 |
UNIX for Beginners Questions & Answers |
|
|
|
17 |
17,015 |
UNIX for Advanced & Expert Users |
|
|
|
3 |
3,541 |
Shell Programming and Scripting |
|
|
|
8 |
7,046 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
7,877 |
Cybersecurity |
|
|
|
1 |
7,141 |
Shell Programming and Scripting |
SSH-COPY-ID(1) General Commands Manual SSH-COPY-ID(1)
NAME
ssh-copy-id - install your public key in a remote machine's authorized_keys
SYNOPSIS
ssh-copy-id [-i [identity_file]] [user@]machine
DESCRIPTION
ssh-copy-id is a script that uses ssh to log into a remote machine and append the indicated identity file to that machine's ~/.ssh/autho-
rized_keys file.
If the -i option is given then the identity file (defaults to ~/.ssh/id_rsa.pub) is used, regardless of whether there are any keys in your
ssh-agent. Otherwise, if this:
ssh-add -L
provides any output, it uses that in preference to the identity file.
If the -i option is used, or the ssh-add produced no output, then it uses the contents of the identity file. Once it has one or more fin-
gerprints (by whatever means) it uses ssh to append them to ~/.ssh/authorized_keys on the remote machine (creating the file, and directory,
if necessary.)
NOTES
This program does not modify the permissions of any pre-existing files or directories. Therefore, if the remote sshd has StrictModes set in
its configuration, then the user's home, ~/.ssh folder, and ~/.ssh/authorized_keys file may need to have group writability disabled manu-
ally, e.g. via
chmod go-w ~ ~/.ssh ~/.ssh/authorized_keys
on the remote machine.
SEE ALSO
ssh(1), ssh-agent(1), sshd(8)
OpenSSH 14 November 1999 SSH-COPY-ID(1)