<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Keys on Thaddeus Koenig</title><link>https://www.thaddeuskoenig.com/tags/keys/</link><description>Recent content in Keys on Thaddeus Koenig</description><generator>Hugo</generator><language>en-US</language><copyright>© 2026 Thaddeus Koenig</copyright><lastBuildDate>Thu, 16 Jan 2025 06:06:24 -0500</lastBuildDate><atom:link href="https://www.thaddeuskoenig.com/tags/keys/index.xml" rel="self" type="application/rss+xml"/><item><title>Copy ssh keys without ssh-copy-id</title><link>https://www.thaddeuskoenig.com/blog/00_legacy_coppy_ssh_keys/</link><pubDate>Thu, 23 Nov 2023 00:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/blog/00_legacy_coppy_ssh_keys/</guid><description>&lt;p&gt;I ran into this issue today so I thought that i would put a solution that I found on here. If you ever run into a situation in which you need to copy your ssh keys to another box but you dont have the handy dandy ssh-copy-id tool, the following one liner should work. Check out this oracle web page for more info.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;cat ~/.ssh/id_rsa.pub | ssh &amp;lt;USER&amp;gt;@&amp;lt;IP&amp;gt; &amp;#39;cat &amp;gt;&amp;gt; .ssh/authorized_keys &amp;amp;&amp;amp; echo &amp;#34;Done&amp;#34;&amp;#39;
&lt;/code&gt;&lt;/pre&gt;</description></item><item><title>Pull public keys from Github url</title><link>https://www.thaddeuskoenig.com/blog/00_legacy_pull_pulic_keys_git/</link><pubDate>Thu, 23 Nov 2023 00:00:00 -0500</pubDate><guid>https://www.thaddeuskoenig.com/blog/00_legacy_pull_pulic_keys_git/</guid><description>&lt;p&gt;If you ever want a simple way to pull your public keys from Github so that you can use your safely stored ssh private keys where you need them.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;curl https://github.com/[USERNAME].keys
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;This command will put it in your authorized_keys file which will actually allow you to use them in ssh.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;curl https://github.com/[USERNAME].keys | tee -a ~/.ssh/authorized_keys
&lt;/code&gt;&lt;/pre&gt;</description></item></channel></rss>