1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.pt_BR/common/ssh-copy-id.md
Renie Siqueira 02e9559762
pages.pt_BR/common/*: fix translation (#14188)
* ffmpeg: a sentence should not begin with an object pronoun.

* img2pdf: fixing a verb tense, and rephrasing to match the original in English.

* java,javac: fix verb tenses.

* mongo: translating a word that doesn't need to stay in English.

* ssh*: translating a word(s) that do(es) not need to stay in English.

* ffmpeg,ssh: updating command accordingly to the English version.
2024-10-17 01:15:51 -07:00

590 B

ssh-copy-id

Instala a sua chave pública no arquivo authorized_keys de uma máquina remota. Mais informações: https://manned.org/ssh-copy-id.

  • Copia suas chaves para a máquina remota:

ssh-copy-id {{nome_de_usuário}}@{{máquina_remota}}

  • Copia a chave pública fornecida para a máquina remota:

ssh-copy-id -i {{caminho/para/certificado}} {{nome_de_usuário}}@{{maquina_remota}}

  • Copia a chave pública fornecida para a máquina remota usando uma porta específica:

ssh-copy-id -i {{caminho/para/certificado}} -p {{porta}} {{nome_de_usuário}}@{{maquina_remota}}