-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.xml
59 lines (27 loc) · 25.4 KB
/
search.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8"?>
<search>
<entry>
<title>tmux相关命令</title>
<link href="/2024/10/24/tmux%E7%9B%B8%E5%85%B3%E5%91%BD%E4%BB%A4/"/>
<url>/2024/10/24/tmux%E7%9B%B8%E5%85%B3%E5%91%BD%E4%BB%A4/</url>
<content type="html"><![CDATA[<h2 id="参考"><a href="#参考" class="headerlink" title="参考"></a>参考</h2><p><a href="https://github.com/tmux/tmux/wiki/Getting-Started">Getting Started · tmux/tmux Wiki (github.com)</a></p><p><a href="https://think.leftshadow.com/docs/tmux/tmux/">简明速查 | 🌟🌟🌟🌟🌟 (leftshadow.com)</a></p><p><a href="https://blog.csdn.net/CSSDCC/article/details/121231906">Tmux教程 (一文就够)-CSDN博客</a></p><p><a href="https://www.ruanyifeng.com/blog/2019/10/tmux.html">Tmux 使用教程 - 阮一峰的网络日志 (ruanyifeng.com)</a></p><h2 id="session"><a href="#session" class="headerlink" title="session"></a>session</h2><h3 id="新建会话"><a href="#新建会话" class="headerlink" title="新建会话"></a>新建会话</h3><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux</span><br></pre></td></tr></table></figure><p>使用<code>new-session</code>命令(简称<code>new</code>)创建新会话:</p><p><code>-s</code>标志为会话指定名称:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux new -s mysession</span><br></pre></td></tr></table></figure><h3 id="查看会话"><a href="#查看会话" class="headerlink" title="查看会话"></a>查看会话</h3> <figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">tmux <span class="built_in">ls</span></span><br><span class="line"><span class="comment"># or</span></span><br><span class="line">tmux list-session</span><br></pre></td></tr></table></figure><h3 id="接入会话"><a href="#接入会话" class="headerlink" title="接入会话"></a>接入会话</h3><p><code>attach-session</code>命令附加到现有会话。如果没有参数,它将附加到最近使用但尚未附加的会话:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux attach</span><br></pre></td></tr></table></figure><p>或者<code>-t</code>给出要附加到的会话的名称:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux attach -t mysession</span><br></pre></td></tr></table></figure><h3 id="暂时离开会话"><a href="#暂时离开会话" class="headerlink" title="暂时离开会话"></a>暂时离开会话</h3><p><code>C-b d</code>键暂时离开(detach)当前会话</p><h3 id="杀死会话"><a href="#杀死会话" class="headerlink" title="杀死会话"></a>杀死会话</h3><p><code>kill-session</code>命令杀死附加的会话及其所有窗口,并分离客户端。<code>kill-session</code>没有键绑定,但可以在命令提示符或树模式下的<code>:</code>提示符下使用。</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux kill-session -t your-session-name</span><br></pre></td></tr></table></figure><p>当然,也可以使用<code>ctrl+d</code>关闭</p><p>关闭所有会话</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux kill-server</span><br></pre></td></tr></table></figure><p>在命令提示符下:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">:kill-server</span><br></pre></td></tr></table></figure><h3 id="切换会话"><a href="#切换会话" class="headerlink" title="切换会话"></a>切换会话</h3><p>切换到指定会话:</p><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux switch -t your-session-name</span><br></pre></td></tr></table></figure><h3 id="重命名会话"><a href="#重命名会话" class="headerlink" title="重命名会话"></a>重命名会话</h3><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux rename-session -t old-session new-session</span><br></pre></td></tr></table></figure><p>按<code>C-b $</code> 重命名当前会话</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">:rename-session [新会话名]</span><br></pre></td></tr></table></figure><h2 id="window"><a href="#window" class="headerlink" title="window"></a>window</h2><h3 id="创建新窗口"><a href="#创建新窗口" class="headerlink" title="创建新窗口"></a>创建新窗口</h3><p>可以用运行<code>C-b c</code>命令的<code>new-window</code>键在附加的会话中创建。</p><p><code>-n</code>允许为新窗口命名。例如,使用命令提示符创建一个名为<code>mynewwindow</code>的窗口:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">:neww -n mynewwindow</span><br></pre></td></tr></table></figure><p>或:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line"># 新建一个指定名称的窗口</span><br><span class="line">tmux new-window -n your-window-name</span><br></pre></td></tr></table></figure><h3 id="重命名窗口"><a href="#重命名窗口" class="headerlink" title="重命名窗口"></a>重命名窗口</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">tmux rename-window -t old_name new_name</span><br></pre></td></tr></table></figure><p><code>C-b ,</code>窗口重命名</p><h3 id="切换窗口"><a href="#切换窗口" class="headerlink" title="切换窗口"></a>切换窗口</h3><p><code>C-b <number></code>切换到指定编号的窗口</p><p><code>C-b p</code>按编号切换到窗口列表中的上一个窗口</p><p><code>C-b n</code>按编号切换到窗口列表中的下一个窗口</p><p><code>C-b '</code>提示输入窗口索引并切换到该窗口</p><p><code>C-b l</code>切换到最后一个窗口</p><p><code>C-b o</code>按序号递增切换窗口</p><h3 id="终止窗口"><a href="#终止窗口" class="headerlink" title="终止窗口"></a>终止窗口</h3><p>按下<code>C-b &</code>提示确认,杀死当前窗口</p><h3 id="查找窗口"><a href="#查找窗口" class="headerlink" title="查找窗口"></a>查找窗口</h3><p>按下<code>C-b f</code>输入字符串</p><h2 id="pane"><a href="#pane" class="headerlink" title="pane"></a>pane</h2><h3 id="划分窗格"><a href="#划分窗格" class="headerlink" title="划分窗格"></a>划分窗格</h3><p><code>C-b %</code>将当前窗格水平划分为上下两个窗格</p><p><code>C-b "</code>将当前窗格垂直划分为左右两个窗格</p><h3 id="切换窗格"><a href="#切换窗格" class="headerlink" title="切换窗格"></a>切换窗格</h3><p><code>C-b <arrow key></code>光标切换到其他窗格</p><p><code>C-b q</code>显示窗格编号。<code>C-b q 1</code>光标切换到窗格1。</p><h3 id="交换窗格"><a href="#交换窗格" class="headerlink" title="交换窗格"></a>交换窗格</h3><ul><li><code>Ctrl+b {</code>:当前窗格与上一个窗格交换位置。</li><li><code>Ctrl+b }</code>:当前窗格与下一个窗格交换位置。</li><li><code>Ctrl+b Ctrl+o</code>:所有窗格按编号递增交换。</li></ul><p>为了使交换变得容易,可以标记单个窗格。所有会话中都有一个标记窗格。<code>C-b m</code>键绑定用于切换附加会话中当前窗口中的活动窗格是否为标记窗格。<code>C-b M</code>完全清除标记的窗格,以便不标记任何窗格。标记窗格的边框以绿色背景显示,并且包含标记窗格的窗口在状态行中具有<code>M</code>标志。</p><p>标记窗格后,可以使用<code>swap-pane</code>命令将其与当前窗口中的活动窗格交换,或者使用<code>swap-window</code>命令将包含标记窗格的窗口与当前窗口交换。例如,使用命令提示符:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">:swap-pane</span><br></pre></td></tr></table></figure><h3 id="调整窗格大小"><a href="#调整窗格大小" class="headerlink" title="调整窗格大小"></a>调整窗格大小</h3><p>可以使用<code>C-b C-<arrow key></code>按箭头方向调整窗格大小</p><h3 id="窗格最大化"><a href="#窗格最大化" class="headerlink" title="窗格最大化"></a>窗格最大化</h3><p>单个窗格可以临时地用<code>C-b z</code>占据整个窗口,隐藏任何其他窗格。再次按下<code>C-b z</code>会将窗格和窗口布局恢复到原来的状态。</p><h3 id="关闭窗格"><a href="#关闭窗格" class="headerlink" title="关闭窗格"></a>关闭窗格</h3><p><code>C-b x</code>关闭当前窗格</p><h3 id="默认窗格布局"><a href="#默认窗格布局" class="headerlink" title="默认窗格布局"></a>默认窗格布局</h3><p><code>C-b Space</code>窗口中的窗格自动排列</p><h3 id="窗格变窗口"><a href="#窗格变窗口" class="headerlink" title="窗格变窗口"></a>窗格变窗口</h3><p><code>Ctrl+b !</code>:将当前窗格拆分为一个独立窗口</p><h2 id="全局管理会话、窗口和窗格"><a href="#全局管理会话、窗口和窗格" class="headerlink" title="全局管理会话、窗口和窗格"></a>全局管理会话、窗口和窗格</h2><p>有两个键绑定可以进入树模式:<code>C-b s</code>开始仅显示会话,并选择附加会话; <code>C-b w</code>开始扩展会话,以便显示窗口,并选择附加会话中的当前窗口。</p><p>树中的项目通过按<code>t</code>进行标记,并通过再次按<code>t</code>取消标记。标记的项目以粗体显示,并在其名称后添加<code>*</code>。<code>C-t</code>标记所有项目。按<code>T</code>可取消所有已标记项目的标记。标记的项目可以通过按<code>X</code>一起杀死。</p><p>树中的每个项目都有一个快捷键,位于行首的方括号中。按下此键将立即选择该项目(就像它已被选中并按下<code>Enter</code>)。前十项是键<code>0</code>至<code>9</code>,之后使用键<code>M-a</code>至<code>M-z</code>。</p><h2 id="复制模式"><a href="#复制模式" class="headerlink" title="复制模式"></a>复制模式</h2><p>使用复制模式复制文本,使用<code>C-b [</code>输入,并使用<code>C-b ]</code>将最近复制的文本粘贴到活动窗格中。</p><p>复制模式使用类似于emacs(1)的键</p><table><thead><tr><th>Key关键</th><th>Action行动</th></tr></thead><tbody><tr><td><code>C-Space</code></td><td>开始选择复制</td></tr><tr><td><code>Enter</code></td><td>复制所选内容</td></tr><tr><td><code>Alt-w</code>或<code>C-w</code></td><td>复制所选内容并退出复制模式</td></tr><tr><td><code>q</code></td><td>退出复制模式</td></tr><tr><td><code>C-g</code></td><td>停止选择而不复制、停止搜索</td></tr><tr><td><code>C-a</code></td><td>将光标移动到行首</td></tr><tr><td><code>C-e</code></td><td>将光标移动到行尾</td></tr><tr><td><code>M-b</code></td><td>上一个词</td></tr><tr><td><code>M-f</code></td><td>下一个词</td></tr></tbody></table><p><code>PgUp</code>向上翻页</p><p><code>PgDn</code>向下翻页</p><p><code>Alt+<arrow key></code>移动半页</p><p><code>g + nubmer</code>光标移动到指定行</p><p><code>C-s</code>查找字符串,<code>n</code>或<code>C-s</code>往前走,<code>C-r</code>或<code>N</code>往后走,<code>Enter</code>确认</p><p>显示缓冲区</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">:show-buffer</span><br></pre></td></tr></table></figure><p>保存缓冲区到文件</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">:save-buffer ./1.txt</span><br></pre></td></tr></table></figure><h2 id="杂项"><a href="#杂项" class="headerlink" title="杂项"></a>杂项</h2><table><thead><tr><th>描述</th><th>cmd</th></tr></thead><tbody><tr><td>窗口中央显示一个数字时钟</td><td><code>Ctrl+b t</code></td></tr><tr><td>列出所有快捷键</td><td><code>Ctrl+b ?</code></td></tr><tr><td>进入命令行模式</td><td><code>Ctrl+b :</code></td></tr></tbody></table><h2 id="命令和标志"><a href="#命令和标志" class="headerlink" title="命令和标志"></a>命令和标志</h2><p>这些都有一个像<code>new-window</code>或<code>new-session</code>或<code>list-keys</code>的名字,许多也有一个较短的别名,如<code>neww</code>或<code>new</code>或<code>lsk</code></p><h2 id="配置tmux"><a href="#配置tmux" class="headerlink" title="配置tmux"></a>配置tmux</h2><p><code>.tmux.conf</code>仅在服务器启动时运行,而不是在创建新会话时运行。</p><p>可以从<code>.tmux.conf</code>或使用<code>source-file</code>命令从正在运行的tmux服务器运行不同的配置文件,例如使用命令提示符从正在运行的服务器再次运行<code>.tmux.conf</code>:</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">:source ~/.tmux.conf</span><br></pre></td></tr></table></figure><p>tmux-plugins中<code>C+b I</code>安装插件</p>]]></content>
</entry>
<entry>
<title>WSL2相关命令</title>
<link href="/2024/10/24/WSL2%E7%9B%B8%E5%85%B3%E5%91%BD%E4%BB%A4/"/>
<url>/2024/10/24/WSL2%E7%9B%B8%E5%85%B3%E5%91%BD%E4%BB%A4/</url>
<content type="html"><![CDATA[<h2 id="参考"><a href="#参考" class="headerlink" title="参考"></a>参考</h2><p><a href="https://www.bilibili.com/video/BV1tW42197za/">超详细的WSL教程:Windows上的Linux子系统_哔哩哔哩_bilibili</a></p><p><a href="https://blog.csdn.net/Li_black/article/details/137472348">WSL2迁移后默认登陆用户为root的解决方案_wsl root-CSDN博客</a></p><h2 id="安装"><a href="#安装" class="headerlink" title="安装"></a>安装</h2><p>默认下载Ubuntu</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --install --web-download</span><br></pre></td></tr></table></figure><p>展示所有可安装的发行版</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --list --online</span><br></pre></td></tr></table></figure><p>下载kali-linux</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --install kali-linux --web-download</span><br></pre></td></tr></table></figure><h2 id="启动停止"><a href="#启动停止" class="headerlink" title="启动停止"></a>启动停止</h2><p>显示安装过的子系统的列表</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --list -v</span><br></pre></td></tr></table></figure><p>默认切换成kali-linux</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --set-default kali-linux</span><br></pre></td></tr></table></figure><p>如果使用老版命令行工具,则启动子系统命令</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl -d Ubuntu</span><br></pre></td></tr></table></figure><p>退出子系统</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">exit</span><br></pre></td></tr></table></figure><h2 id="卸载与备份"><a href="#卸载与备份" class="headerlink" title="卸载与备份"></a>卸载与备份</h2><p>卸载子系统</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --unregister kali-linux</span><br></pre></td></tr></table></figure><p>备份子系统</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --export Ubuntu ubuntu.tar</span><br></pre></td></tr></table></figure><p>可以通过备份来实现子系统转移,从而节省C盘空间</p><p>导入子系统</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br><span class="line">3</span><br></pre></td><td class="code"><pre><span class="line">cd D:</span><br><span class="line">mkdir wsl</span><br><span class="line">wsl --import Ubuntu1 D:/wsl C:\Users\R7000P\Desktop\ubuntu.tar</span><br></pre></td></tr></table></figure><h2 id="命令混用"><a href="#命令混用" class="headerlink" title="命令混用"></a>命令混用</h2><p>Ubuntu里调出Windows的记事本工具</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">notepad.exe test.txt</span><br></pre></td></tr></table></figure><p>动用资源管理器</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">explorer.exe .</span><br></pre></td></tr></table></figure><h2 id="高级配置"><a href="#高级配置" class="headerlink" title="高级配置"></a>高级配置</h2><p><code>.wslconfig</code>全局设置</p><p><code>wsl.conf</code>本地配置</p><h3 id="systemd支持"><a href="#systemd支持" class="headerlink" title="systemd支持"></a>systemd支持</h3><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">sudo vi /etc/wsl.conf</span><br></pre></td></tr></table></figure><p>粘贴下面段落</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">[boot]</span><br><span class="line">systemd=true</span><br></pre></td></tr></table></figure><p>更改配置后需要等待8秒,关闭子系统</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --shutdown</span><br></pre></td></tr></table></figure><p>执行以下命令,如有列表,则systemd配置成功</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">systemctl</span><br></pre></td></tr></table></figure><h3 id="网络配置"><a href="#网络配置" class="headerlink" title="网络配置"></a>网络配置</h3><p>如需使用镜像网络来共用IP地址,则进入homo目录,即C:\Users\你的用户名,回车</p><p>然后创建一个配置文件<code>.wslconfig</code></p><p>粘贴下面段落</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">[wsl2]</span><br><span class="line">networkingMode=mirrored</span><br></pre></td></tr></table></figure><p>更改配置后需要等待8秒,关闭子系统</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --shutdown</span><br></pre></td></tr></table></figure><p>查看网络配置</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">ifconfig</span><br></pre></td></tr></table></figure><h2 id="Docker"><a href="#Docker" class="headerlink" title="Docker"></a>Docker</h2><p>自行下载安装docker</p><p>如果想自己指定安装目录,可以使用命令行的方式</p><p>参数<code>--installation-dir=D:\Docker</code>可以指定安装位置</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">start /w "" "Docker Desktop Installer.exe" install --installation-dir=D:\Docker</span><br></pre></td></tr></table></figure><p>自行配制镜像源加速</p><h2 id="WSL2迁移后默认登陆用户为root的解决方案"><a href="#WSL2迁移后默认登陆用户为root的解决方案" class="headerlink" title="WSL2迁移后默认登陆用户为root的解决方案"></a>WSL2迁移后默认登陆用户为root的解决方案</h2><p>第一步,在root用户下面用vim打开<code>/etc/wsl.conf</code>文件</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">vim /etc/wsl.conf</span><br></pre></td></tr></table></figure><p>第二步,在文件中添加以下代码, 仅需把user_name替换成你原来wsl的用户名即可</p><figure class="highlight plaintext"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line">[user]</span><br><span class="line">default=user_name</span><br></pre></td></tr></table></figure><p>重启wsl,在powershell下输入</p><figure class="highlight shell"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">wsl --shutdown</span><br></pre></td></tr></table></figure>]]></content>
</entry>
<entry>
<title>图片测试</title>
<link href="/2024/09/10/%E5%9B%BE%E7%89%87%E6%B5%8B%E8%AF%95/"/>
<url>/2024/09/10/%E5%9B%BE%E7%89%87%E6%B5%8B%E8%AF%95/</url>
<content type="html"><![CDATA[<p><img src="/2024/09/10/%E5%9B%BE%E7%89%87%E6%B5%8B%E8%AF%95/1.jpg" alt="1"></p>]]></content>
</entry>
<entry>
<title>Hello World</title>
<link href="/2023/09/13/hello-world/"/>
<url>/2023/09/13/hello-world/</url>
<content type="html"><![CDATA[<p>Welcome to <a href="https://hexo.io/">Hexo</a>! This is your very first post. Check <a href="https://hexo.io/docs/">documentation</a> for more info. If you get any problems when using Hexo, you can find the answer in <a href="https://hexo.io/docs/troubleshooting.html">troubleshooting</a> or you can ask me on <a href="https://github.com/hexojs/hexo/issues">GitHub</a>.</p><h2 id="Quick-Start"><a href="#Quick-Start" class="headerlink" title="Quick Start"></a>Quick Start</h2><h3 id="Create-a-new-post"><a href="#Create-a-new-post" class="headerlink" title="Create a new post"></a>Create a new post</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo new <span class="string">"My New Post"</span></span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/writing.html">Writing</a></p><h3 id="Run-server"><a href="#Run-server" class="headerlink" title="Run server"></a>Run server</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo server</span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/server.html">Server</a></p><h3 id="Generate-static-files"><a href="#Generate-static-files" class="headerlink" title="Generate static files"></a>Generate static files</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo generate</span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/generating.html">Generating</a></p><h3 id="Deploy-to-remote-sites"><a href="#Deploy-to-remote-sites" class="headerlink" title="Deploy to remote sites"></a>Deploy to remote sites</h3><figure class="highlight bash"><table><tr><td class="gutter"><pre><span class="line">1</span><br></pre></td><td class="code"><pre><span class="line">$ hexo deploy</span><br></pre></td></tr></table></figure><p>More info: <a href="https://hexo.io/docs/one-command-deployment.html">Deployment</a></p>]]></content>
</entry>
</search>