mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 17:37:17 +03:00
c793b55750
This reverts commit 65914f8895
.
16 lines
335 B
Markdown
16 lines
335 B
Markdown
---
|
||
title: Беспарольная аутентификация для SSH
|
||
description: С помощью публичного ключа
|
||
date: 2022-12-14T12:04:00+05:00
|
||
tags: [linux, ssh]
|
||
---
|
||
## Генерация ключа
|
||
```shell
|
||
ssh-keygen
|
||
```
|
||
|
||
## Копировние ключв
|
||
```shell
|
||
ssh-copy-id <username>@<server-ip>
|
||
```
|