---
title: "ssh copy id"
description: "I recently setup some vm's on my main machine and got sick of signing in with passwords."
date: 2022-12-04
published: true
tags:
  - linux
template: til
---


I recently setup some vm's on my main machine and got sick of signing in with
passwords.

``` bash
ssh-keygen
ssh-copy-id -i ~/.ssh/id_rsa.pub virt
```
