Skip to content

Commit

Permalink
Site updated at 2012-06-10 09:41:23 UTC
Browse files Browse the repository at this point in the history
  • Loading branch information
hi54yt committed Jun 10, 2012
1 parent b974dd1 commit bc7a915
Show file tree
Hide file tree
Showing 8 changed files with 115 additions and 51 deletions.
44 changes: 32 additions & 12 deletions atom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title><![CDATA[hi54yt]]></title> <title><![CDATA[hi54yt]]></title>
<link href="http://hi54yt.github.com/atom.xml" rel="self"/> <link href="http://hi54yt.github.com/atom.xml" rel="self"/>
<link href="http://hi54yt.github.com/"/> <link href="http://hi54yt.github.com/"/>
<updated>2012-06-10T17:16:47+08:00</updated> <updated>2012-06-10T17:41:20+08:00</updated>
<id>http://hi54yt.github.com/</id> <id>http://hi54yt.github.com/</id>
<author> <author>
<name><![CDATA[yangtao]]></name> <name><![CDATA[yangtao]]></name>
Expand All @@ -18,14 +18,26 @@
<link href="http://hi54yt.github.com/blog/2012/06/10/octopress-usage/"/> <link href="http://hi54yt.github.com/blog/2012/06/10/octopress-usage/"/>
<updated>2012-06-10T16:55:00+08:00</updated> <updated>2012-06-10T16:55:00+08:00</updated>
<id>http://hi54yt.github.com/blog/2012/06/10/octopress-usage</id> <id>http://hi54yt.github.com/blog/2012/06/10/octopress-usage</id>
<content type="html"><![CDATA[<p>新建:<br/> <content type="html"><![CDATA[<p>新建:</p>
rake &#8220;new_post[octopress usage]&#8221;<br/>
本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress usage]<br/> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
生成:<br/> </pre></td><td class='code'><pre><code class=''><span class='line'>rake "new_post[octopress usage]"</span></code></pre></td></tr></table></div></figure>
rake generate<br/>
发布:<br/>
rake deploy<br/> <p>本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress usage]<br/>
因为我用的github,会在octopress根目录下产生一个<em>deploy,每次rake deploy提示更正rake </em>deploy,以后详细研究了linux再说吧</p> 生成:</p>
<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>rake generate</span></code></pre></td></tr></table></div></figure>
<p>发布:</p>
<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>rake deploy</span></code></pre></td></tr></table></div></figure>
<p>因为我用的github,会在octopress根目录下产生一个<em>deploy,每次rake deploy提示更正rake </em>deploy,以后详细研究了linux再说吧</p>
]]></content> ]]></content>
</entry> </entry>


Expand All @@ -39,12 +51,20 @@ rake deploy<br/>
<p>记录下关键步骤:</p> <p>记录下关键步骤:</p>
<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>ssh-keygen -t rsa -C "your_email@youremail.com" </span></code></pre></td></tr></table></div></figure> </pre></td><td class='code'><pre><code class=''><span class='line'>ssh-keygen -t rsa -C "your_email@youremail.com"</span></code></pre></td></tr></table></div></figure>
<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>chmod 700 ~/.ssh</span></code></pre></td></tr></table></div></figure>
<p>chmod 700 ~/.ssh</p>
<p>chmod 600 ~/.ssh/authorized_keys</p> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>chmod 600 ~/.ssh/authorized_keys</span></code></pre></td></tr></table></div></figure>
]]></content> ]]></content>
</entry> </entry>


Expand Down
18 changes: 14 additions & 4 deletions blog/2012/06/10/fuck-it-out-ssh/index.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@




<meta name="description" content="折腾了一天的ssh免密码登陆,最后发现是authorized_keys少复制一个字母,总算是fuck it out了。 记录下关键步骤: 1 <meta name="description" content="折腾了一天的ssh免密码登陆,最后发现是authorized_keys少复制一个字母,总算是fuck it out了。 记录下关键步骤: 1
ssh-keygen -t rsa -C "your_email@youremail.com" chmod 700 ~/.ssh chmod 600 ~/. &hellip;"> ssh-keygen -t rsa -C "your_email@youremail.com" 1
chmod 700 ~/.ssh 1
chmod 600 &hellip;">




<!-- http://t.co/dKP3o1e --> <!-- http://t.co/dKP3o1e -->
Expand Down Expand Up @@ -108,12 +110,20 @@ <h1 class="entry-title">SSH免密码登陆</h1>
<p>记录下关键步骤:</p> <p>记录下关键步骤:</p>


<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>ssh-keygen -t rsa -C "your_email@youremail.com" </span></code></pre></td></tr></table></div></figure> </pre></td><td class='code'><pre><code class=''><span class='line'>ssh-keygen -t rsa -C "your_email@youremail.com"</span></code></pre></td></tr></table></div></figure>




<p>chmod 700 ~/.ssh</p>


<p>chmod 600 ~/.ssh/authorized_keys</p>
<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>chmod 700 ~/.ssh</span></code></pre></td></tr></table></div></figure>




<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>chmod 600 ~/.ssh/authorized_keys</span></code></pre></td></tr></table></div></figure>

</div> </div>




Expand Down
33 changes: 22 additions & 11 deletions blog/2012/06/10/octopress-usage/index.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
<meta name="author" content="yangtao"> <meta name="author" content="yangtao">




<meta name="description" content="新建: <meta name="description" content="新建: 1
rake &#8220;new_post[octopress usage]&#8221; rake "new_post[octopress usage]" 本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress &hellip;">
本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post &hellip;">




<!-- http://t.co/dKP3o1e --> <!-- http://t.co/dKP3o1e -->
Expand Down Expand Up @@ -104,14 +103,26 @@ <h1 class="entry-title">Octopress常用命令</h1>
</header> </header>




<div class="entry-content"><p>新建:<br/> <div class="entry-content"><p>新建:</p>
rake &#8220;new_post[octopress usage]&#8221;<br/>
本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress usage]<br/> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
生成:<br/> </pre></td><td class='code'><pre><code class=''><span class='line'>rake "new_post[octopress usage]"</span></code></pre></td></tr></table></div></figure>
rake generate<br/>
发布:<br/>
rake deploy<br/> <p>本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress usage]<br/>
因为我用的github,会在octopress根目录下产生一个<em>deploy,每次rake deploy提示更正rake </em>deploy,以后详细研究了linux再说吧</p> 生成:</p>

<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>rake generate</span></code></pre></td></tr></table></div></figure>


<p>发布:</p>

<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>rake deploy</span></code></pre></td></tr></table></div></figure>


<p>因为我用的github,会在octopress根目录下产生一个<em>deploy,每次rake deploy提示更正rake </em>deploy,以后详细研究了linux再说吧</p>
</div> </div>




Expand Down
2 changes: 1 addition & 1 deletion blog/categories/blog/atom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title><![CDATA[Category: blog | hi54yt]]></title> <title><![CDATA[Category: blog | hi54yt]]></title>
<link href="http://hi54yt.github.com/blog/categories/blog/atom.xml" rel="self"/> <link href="http://hi54yt.github.com/blog/categories/blog/atom.xml" rel="self"/>
<link href="http://hi54yt.github.com/"/> <link href="http://hi54yt.github.com/"/>
<updated>2012-06-10T17:16:47+08:00</updated> <updated>2012-06-10T17:41:20+08:00</updated>
<id>http://hi54yt.github.com/</id> <id>http://hi54yt.github.com/</id>
<author> <author>
<name><![CDATA[yangtao]]></name> <name><![CDATA[yangtao]]></name>
Expand Down
2 changes: 1 addition & 1 deletion blog/categories/first/atom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title><![CDATA[Category: first | hi54yt]]></title> <title><![CDATA[Category: first | hi54yt]]></title>
<link href="http://hi54yt.github.com/blog/categories/first/atom.xml" rel="self"/> <link href="http://hi54yt.github.com/blog/categories/first/atom.xml" rel="self"/>
<link href="http://hi54yt.github.com/"/> <link href="http://hi54yt.github.com/"/>
<updated>2012-06-10T17:16:47+08:00</updated> <updated>2012-06-10T17:41:20+08:00</updated>
<id>http://hi54yt.github.com/</id> <id>http://hi54yt.github.com/</id>
<author> <author>
<name><![CDATA[yangtao]]></name> <name><![CDATA[yangtao]]></name>
Expand Down
12 changes: 8 additions & 4 deletions blog/categories/ssh/atom.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title><![CDATA[Category: ssh | hi54yt]]></title> <title><![CDATA[Category: ssh | hi54yt]]></title>
<link href="http://hi54yt.github.com/blog/categories/ssh/atom.xml" rel="self"/> <link href="http://hi54yt.github.com/blog/categories/ssh/atom.xml" rel="self"/>
<link href="http://hi54yt.github.com/"/> <link href="http://hi54yt.github.com/"/>
<updated>2012-06-10T17:16:47+08:00</updated> <updated>2012-06-10T17:41:20+08:00</updated>
<id>http://hi54yt.github.com/</id> <id>http://hi54yt.github.com/</id>
<author> <author>
<name><![CDATA[yangtao]]></name> <name><![CDATA[yangtao]]></name>
Expand All @@ -22,12 +22,16 @@
<p>记录下关键步骤: <p>记录下关键步骤:
<code> <code>
ssh-keygen -t rsa -C "your_email@youremail.com" ssh-keygen -t rsa -C "your_email@youremail.com"
</code></p> </code></p>
<p>chmod 700 ~/.ssh</p> <p><code>
chmod 700 ~/.ssh
</code></p>
<p>chmod 600 ~/.ssh/authorized_keys</p> <p><code>
chmod 600 ~/.ssh/authorized_keys
</code></p>
]]></content> ]]></content>
</entry> </entry>


Expand Down
47 changes: 33 additions & 14 deletions index.html
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
<meta name="author" content="yangtao"> <meta name="author" content="yangtao">




<meta name="description" content="新建: <meta name="description" content="新建: 1
rake &#8220;new_post[octopress usage]&#8221; rake "new_post[octopress usage]" 本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress &hellip;">
本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post &hellip;">




<!-- http://t.co/dKP3o1e --> <!-- http://t.co/dKP3o1e -->
Expand Down Expand Up @@ -107,14 +106,26 @@ <h1 class="entry-title"><a href="/blog/2012/06/10/octopress-usage/">Octopress常
</header> </header>




<div class="entry-content"><p>新建:<br/> <div class="entry-content"><p>新建:</p>
rake &#8220;new_post[octopress usage]&#8221;<br/>
本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress usage]<br/> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
生成:<br/> </pre></td><td class='code'><pre><code class=''><span class='line'>rake "new_post[octopress usage]"</span></code></pre></td></tr></table></div></figure>
rake generate<br/>
发布:<br/>
rake deploy<br/> <p>本来是rake new_post[&#8220;octopress usage&#8221;],但是据说是什么原因,必须这样,否则会报错:zsh: no matches found: new_post[octopress usage]<br/>
因为我用的github,会在octopress根目录下产生一个<em>deploy,每次rake deploy提示更正rake </em>deploy,以后详细研究了linux再说吧</p> 生成:</p>

<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>rake generate</span></code></pre></td></tr></table></div></figure>


<p>发布:</p>

<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>rake deploy</span></code></pre></td></tr></table></div></figure>


<p>因为我用的github,会在octopress根目录下产生一个<em>deploy,每次rake deploy提示更正rake </em>deploy,以后详细研究了linux再说吧</p>
</div> </div>




Expand Down Expand Up @@ -157,12 +168,20 @@ <h1 class="entry-title"><a href="/blog/2012/06/10/fuck-it-out-ssh/">SSH免密码
<p>记录下关键步骤:</p> <p>记录下关键步骤:</p>


<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>ssh-keygen -t rsa -C "your_email@youremail.com" </span></code></pre></td></tr></table></div></figure> </pre></td><td class='code'><pre><code class=''><span class='line'>ssh-keygen -t rsa -C "your_email@youremail.com"</span></code></pre></td></tr></table></div></figure>




<figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>chmod 700 ~/.ssh</span></code></pre></td></tr></table></div></figure>





<p>chmod 700 ~/.ssh</p>


<p>chmod 600 ~/.ssh/authorized_keys</p> <figure class='code'><div class="highlight"><table><tr><td class="gutter"><pre class="line-numbers"><span class='line-number'>1</span>
</pre></td><td class='code'><pre><code class=''><span class='line'>chmod 600 ~/.ssh/authorized_keys</span></code></pre></td></tr></table></div></figure>

</div> </div>




Expand Down
8 changes: 4 additions & 4 deletions sitemap.xml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
</url> </url>
<url> <url>
<loc>http://hi54yt.github.com/blog/2012/06/10/fuck-it-out-ssh/</loc> <loc>http://hi54yt.github.com/blog/2012/06/10/fuck-it-out-ssh/</loc>
<lastmod>2012-06-10T17:16:19+08:00</lastmod> <lastmod>2012-06-10T17:17:51+08:00</lastmod>
</url> </url>
<url> <url>
<loc>http://hi54yt.github.com/blog/2012/06/10/octopress-usage/</loc> <loc>http://hi54yt.github.com/blog/2012/06/10/octopress-usage/</loc>
<lastmod>2012-06-10T17:06:48+08:00</lastmod> <lastmod>2012-06-10T17:18:35+08:00</lastmod>
</url> </url>
<url> <url>
<loc>http://hi54yt.github.com/blog/archives/</loc> <loc>http://hi54yt.github.com/blog/archives/</loc>
<lastmod>2012-06-10T17:16:19+08:00</lastmod> <lastmod>2012-06-10T17:18:35+08:00</lastmod>
</url> </url>
<url> <url>
<loc>http://hi54yt.github.com/</loc> <loc>http://hi54yt.github.com/</loc>
<lastmod>2012-06-10T17:16:19+08:00</lastmod> <lastmod>2012-06-10T17:18:35+08:00</lastmod>
</url> </url>
</urlset> </urlset>

0 comments on commit bc7a915

Please sign in to comment.