<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>All Posts - Mulinux | Linux &amp; DevOps Notes</title>
    <link>https://blog.mulinux.com/en/posts/</link>
    <description>Mulinux - Linux Operations &amp; DevOps blog. Notes on Linux, Kubernetes, Docker and backend engineering.</description>
    <generator>Hugo 0.160.0 &amp; FixIt v0.4.5</generator>
    <language>en</language>
    <lastBuildDate>Mon, 17 Oct 2022 13:57:34 +0800</lastBuildDate>
    <atom:link href="https://blog.mulinux.com/en/posts/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>MySQL 常用排障与救火速查 (Runbook)</title>
      <link>https://blog.mulinux.com/en/mysql-command/</link>
      <pubDate>Mon, 17 Oct 2022 13:57:34 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/mysql-command/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;strong&gt;🚨 使用指南：&lt;/strong&gt; 这是一份专为生产环境数据库宕机、卡顿、爆满设计的&lt;strong&gt;救火急诊室指南&lt;/strong&gt;。越致命的状况对应的代码越靠前，日常业务代码被折叠至附录。在此页面所抄写的每一行指令，都应该怀揣对生产环境的敬畏。&lt;/p&gt;</description>
    </item>
    <item>
      <title>nginx logrotate日志回滚</title>
      <link>https://blog.mulinux.com/en/nginx-logrotate%E6%97%A5%E5%BF%97%E5%9B%9E%E6%BB%9A/</link>
      <pubDate>Tue, 09 Aug 2022 10:04:22 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/nginx-logrotate%E6%97%A5%E5%BF%97%E5%9B%9E%E6%BB%9A/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;logrotate配置&#34;&gt;&lt;span&gt;logrotate配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#logrotate%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;vi /etc/logrotate.d/nginx&#xA;/var/log/nginx/*.log {&#xA;    rotate 7&#xA;    size 5k&#xA;    dateext&#xA;    dateformat -%Y-%m-%d-%s&#xA;    missingok&#xA;#    compress&#xA;    sharedscripts&#xA;    postrotate&#xA;        test -r /run/nginx.pid &amp;amp;&amp;amp; kill -USR1 `cat /run/nginx.pid`&#xA;    endscript&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;日志回滚命令&#34;&gt;&lt;span&gt;日志回滚命令&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%97%a5%e5%bf%97%e5%9b%9e%e6%bb%9a%e5%91%bd%e4%bb%a4&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;logrotate -v -f /etc/logrotate.d/nginx&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;定时任务&#34;&gt;&lt;span&gt;定时任务&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%9a%e6%97%b6%e4%bb%bb%e5%8a%a1&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;crontab -e&#xA;*/5 * * * * /usr/sbin/logrotate -v -f /etc/logrotate.d/nginx&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>CDH中Kafka实现多端口监听</title>
      <link>https://blog.mulinux.com/en/cdh%E4%B8%ADkafka%E5%AE%9E%E7%8E%B0%E5%A4%9A%E7%AB%AF%E5%8F%A3%E7%9B%91%E5%90%AC/</link>
      <pubDate>Mon, 07 Mar 2022 14:45:11 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/cdh%E4%B8%ADkafka%E5%AE%9E%E7%8E%B0%E5%A4%9A%E7%AB%AF%E5%8F%A3%E7%9B%91%E5%90%AC/</guid>
      <category domain="https://blog.mulinux.com/en/categories/cdh/">CDH</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;节点分布&#34;&gt;&lt;span&gt;节点分布&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%8a%82%e7%82%b9%e5%88%86%e5%b8%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;table&gt;&#xA;  &lt;thead&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;名称&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;集群IP&lt;/th&gt;&#xA;          &lt;th style=&#34;text-align: left&#34;&gt;业务IP&lt;/th&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/thead&gt;&#xA;  &lt;tbody&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;AIOPS01CALC&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;192.168.1.1&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;10.10.1.1&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;AIOPS02CALC&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;192.168.1.2&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;10.10.1.2&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;      &lt;tr&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;AIOPS03CALC&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;192.168.1.3&lt;/td&gt;&#xA;          &lt;td style=&#34;text-align: left&#34;&gt;10.10.1.3&lt;/td&gt;&#xA;      &lt;/tr&gt;&#xA;  &lt;/tbody&gt;&#xA;&lt;/table&gt;&#xA;&lt;h1 class=&#34;heading-element&#34; id=&#34;需求描述&#34;&gt;&lt;span&gt;需求描述&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%9c%80%e6%b1%82%e6%8f%8f%e8%bf%b0&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;集群内部通过192.168.1.X网段通信，对外通过10.10.1.X网段通信，可使用如下参数配置实现多网段不同端口监听访问。&lt;/p&gt;</description>
    </item>
    <item>
      <title>logstash使用示例</title>
      <link>https://blog.mulinux.com/en/logstash%E4%BD%BF%E7%94%A8%E7%A4%BA%E4%BE%8B/</link>
      <pubDate>Sun, 12 Dec 2021 10:04:22 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/logstash%E4%BD%BF%E7%94%A8%E7%A4%BA%E4%BE%8B/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;es2csv&#34;&gt;&lt;span&gt;es2csv&lt;/span&gt;&#xA;  &lt;a href=&#34;#es2csv&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;input {&#xA; elasticsearch {&#xA;    hosts =&amp;gt; &amp;#34;localhost:9200&amp;#34;&#xA;    index =&amp;gt; &amp;#34;kibana_sample_data_ecommerce&amp;#34;&#xA;&#x9;user =&amp;gt; &amp;#34;elastic&amp;#34;&#xA;&#x9;password =&amp;gt; &amp;#34;password&amp;#34;&#xA;    query =&amp;gt; &amp;#39;{  # query可不填写&#xA;    &amp;#34;query&amp;#34;: {&#xA;      &amp;#34;match_all&amp;#34;: {}&#xA;      }&#xA;    }&amp;#39;&#xA;  }&#xA;}&#xA; &#xA;output {&#xA;  csv {&#xA;    fields =&amp;gt; [&amp;#34;@message&amp;#34;]&#xA;    path =&amp;gt; &amp;#34;/tmp/csv-export.csv&amp;#34;&#xA;  }&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;es2file&#34;&gt;&lt;span&gt;es2file&lt;/span&gt;&#xA;  &lt;a href=&#34;#es2file&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;input {&#xA; elasticsearch {&#xA;    hosts =&amp;gt; &amp;#34;localhost:9200&amp;#34;&#xA;    index =&amp;gt; &amp;#34;kibana_sample_data_ecommerce&amp;#34;&#xA;&#x9;user =&amp;gt; &amp;#34;elastic&amp;#34;&#xA;&#x9;password =&amp;gt; &amp;#34;password&amp;#34;&#xA;    query =&amp;gt; &amp;#39;{  &#xA;    &amp;#34;query&amp;#34;: {&#xA;      &amp;#34;match_all&amp;#34;: {}&#xA;      }&#xA;    }&amp;#39;&#xA;  }&#xA;}&#xA; &#xA;output {&#xA;  file {&#xA;    path =&amp;gt; &amp;#34;/tmp/csv-export.txt&amp;#34;&#xA;&#x9;codec =&amp;gt; line { format =&amp;gt; &amp;#34;%{@message}&amp;#34; }&#xA;  }&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;启动命令&#34;&gt;&lt;span&gt;启动命令&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%90%af%e5%8a%a8%e5%91%bd%e4%bb%a4&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;/app/logstash/bin/logstash -f /app/logstash/config/esTocsv.conf&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Redis 生产环境主从架构配置参考</title>
      <link>https://blog.mulinux.com/en/redis-config/</link>
      <pubDate>Mon, 08 Feb 2021 15:59:42 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/redis-config/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;prod-xxxx-redis&#34;&gt;&lt;span&gt;prod xxxx redis&lt;/span&gt;&#xA;  &lt;a href=&#34;#prod-xxxx-redis&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;blockquote&gt;&#xA;&lt;p&gt;这是一份基于生产环境的主从 Redis 配置脱敏留档。供部署搭建时参考。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Windows Find Software</title>
      <link>https://blog.mulinux.com/en/windows-find-software/</link>
      <pubDate>Fri, 05 Feb 2021 14:11:42 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/windows-find-software/</guid>
      <category domain="https://blog.mulinux.com/en/categories/windows/">Windows</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;查找windows是否安装某个软件&#34;&gt;&lt;span&gt;查找windows是否安装某个软件&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%9f%a5%e6%89%bewindows%e6%98%af%e5%90%a6%e5%ae%89%e8%a3%85%e6%9f%90%e4%b8%aa%e8%bd%af%e4%bb%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;通过服务查找&#34;&gt;&lt;span&gt;通过服务查找&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%80%9a%e8%bf%87%e6%9c%8d%e5%8a%a1%e6%9f%a5%e6%89%be&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;powershell&#34;&gt;&lt;span&gt;powershell&lt;/span&gt;&#xA;  &lt;a href=&#34;#powershell&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;Get-WmiObject -class Win32_Product |Select-Object -Property name,version&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;批处理&#34;&gt;&lt;span&gt;批处理&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%89%b9%e5%a4%84%e7%90%86&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\|find /i &amp;#34;sogou input&amp;#34;&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;通过路径名称匹配&#34;&gt;&lt;span&gt;通过路径名称匹配&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%80%9a%e8%bf%87%e8%b7%af%e5%be%84%e5%90%8d%e7%a7%b0%e5%8c%b9%e9%85%8d&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;Get-ChildItem C:\ProgramData\Microsoft\Windows\\&amp;#39;Start Menu\&amp;#39;\Programs\ -Filter *Premium*&amp;#34;&#xA;Get-ChildItem C:\\&amp;#39;Program Files\&amp;#39; -Filter *Premium*&amp;#34;&#xA;Get-ChildItem C:\\&amp;#39;Program Files (x86)\&amp;#39; -Filter *Premium*&amp;#34;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Zabbix监控断线，proxy日志提示Connection Restored </title>
      <link>https://blog.mulinux.com/en/zabbixproxy-connection-restored-nf_conntrack-tablefull/</link>
      <pubDate>Thu, 14 Jan 2021 11:14:03 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/zabbixproxy-connection-restored-nf_conntrack-tablefull/</guid>
      <category domain="https://blog.mulinux.com/en/categories/monitor/">Monitor</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;问题说明&#34;&gt;&lt;span&gt;问题说明&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%97%ae%e9%a2%98%e8%af%b4%e6%98%8e&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;zabbix监控数据出现断线&lt;/p&gt;</description>
    </item>
    <item>
      <title>容器化部署Wordpress</title>
      <link>https://blog.mulinux.com/en/docker-compose-wordpress/</link>
      <pubDate>Wed, 23 Dec 2020 13:30:28 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/docker-compose-wordpress/</guid>
      <category domain="https://blog.mulinux.com/en/categories/k8s/">K8S</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;install-docker-and-docker-compose&#34;&gt;&lt;span&gt;Install docker and docker-compose&lt;/span&gt;&#xA;  &lt;a href=&#34;#install-docker-and-docker-compose&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;wget http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo&#xA;yum install docker-ce -y&#xA;systemctl start docker&#xA;systemctl enable docker&#xA;curl -L &amp;#34;https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)&amp;#34; -o /usr/local/bin/docker-compose&#xA;ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;deploy-wordpress-using-official-examples&#34;&gt;&lt;span&gt;Deploy wordpress using official examples&lt;/span&gt;&#xA;  &lt;a href=&#34;#deploy-wordpress-using-official-examples&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;create-wordpress-directory&#34;&gt;&lt;span&gt;Create wordpress directory&lt;/span&gt;&#xA;  &lt;a href=&#34;#create-wordpress-directory&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;mkdir wordpress&#xA;cd wordpress/&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;create-docker-compose-file&#34;&gt;&lt;span&gt;Create docker-compose file&lt;/span&gt;&#xA;  &lt;a href=&#34;#create-docker-compose-file&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;p&gt;vi docker-compose.yml&lt;/p&gt;</description>
    </item>
    <item>
      <title>Kvm Windows时间异常问题</title>
      <link>https://blog.mulinux.com/en/kvm-windows%E6%97%B6%E9%97%B4%E5%BC%82%E5%B8%B8%E9%97%AE%E9%A2%98/</link>
      <pubDate>Wed, 16 Dec 2020 11:23:23 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/kvm-windows%E6%97%B6%E9%97%B4%E5%BC%82%E5%B8%B8%E9%97%AE%E9%A2%98/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;kvm-xml配置&#34;&gt;&lt;span&gt;KVM xml配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#kvm-xml%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;&amp;lt;clock offset=&amp;#39;localtime&amp;#39;&amp;gt;&#xA;  &amp;lt;timer name=&amp;#39;rtc&amp;#39; tickpolicy=&amp;#39;catchup&amp;#39; track=&amp;#39;guest&amp;#39;/&amp;gt;&#xA;  &amp;lt;timer name=&amp;#39;pit&amp;#39; tickpolicy=&amp;#39;delay&amp;#39;/&amp;gt;&#xA;  &amp;lt;timer name=&amp;#39;hpet&amp;#39; present=&amp;#39;no&amp;#39;/&amp;gt;&#xA;&amp;lt;/clock&amp;gt;&#xA;&#xA;or&#xA;&#xA;&amp;lt;clock offset=&amp;#39;timezone&amp;#39; timezone=&amp;#39;Asia/Shanghai&amp;#39;/&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;windows服务器配置&#34;&gt;&lt;span&gt;Windows服务器配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#windows%e6%9c%8d%e5%8a%a1%e5%99%a8%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;bcdedit /set USEPLATFORMCLOCK on #设置&#xA;bcdedit /enum #查看是否生效&#xA;bcdedit / deletevalue useplatformclock #取消配置&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Nginx 代理示例</title>
      <link>https://blog.mulinux.com/en/nginx-proxy/</link>
      <pubDate>Tue, 24 Nov 2020 10:22:53 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/nginx-proxy/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;stream代理&#34;&gt;&lt;span&gt;stream代理&lt;/span&gt;&#xA;  &lt;a href=&#34;#stream%e4%bb%a3%e7%90%86&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;本地80代理到192.168.0.111:8081&lt;/p&gt;</description>
    </item>
    <item>
      <title>驱动</title>
      <link>https://blog.mulinux.com/en/%E9%A9%B1%E5%8A%A8/</link>
      <pubDate>Mon, 23 Nov 2020 15:12:53 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E9%A9%B1%E5%8A%A8/</guid>
      <category domain="https://blog.mulinux.com/en/categories/life/">Life</category>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;人生的道路都是由心来描绘的，所以，无论自己处于多么严酷的境遇之中，心头都不应为悲观的思想所萦绕。&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;三环理论&#34;&gt;&lt;span&gt;三环理论&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%89%e7%8e%af%e7%90%86%e8%ae%ba&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/futrue/%E4%B8%89%E7%8E%AF%E7%90%86%E8%AE%BA.png&#39; alt=&#34;三环理论&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Python使用Libvirt Api</title>
      <link>https://blog.mulinux.com/en/use-libvirt-api/</link>
      <pubDate>Mon, 23 Nov 2020 10:27:02 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-libvirt-api/</guid>
      <category domain="https://blog.mulinux.com/en/categories/python/">Python</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;libvirt-api文档&#34;&gt;&lt;span&gt;libvirt api文档&lt;/span&gt;&#xA;  &lt;a href=&#34;#libvirt-api%e6%96%87%e6%a1%a3&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;libvrit文档：https://libvirt.org/html/libvirt-libvirt-domain.html#virDomainGetBlockInfo&lt;/p&gt;</description>
    </item>
    <item>
      <title>技术文章推荐</title>
      <link>https://blog.mulinux.com/en/%E6%8A%80%E6%9C%AF%E6%96%87%E7%AB%A0%E6%8E%A8%E8%8D%90/</link>
      <pubDate>Wed, 18 Nov 2020 09:38:29 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E6%8A%80%E6%9C%AF%E6%96%87%E7%AB%A0%E6%8E%A8%E8%8D%90/</guid>
      <category domain="https://blog.mulinux.com/en/categories/%E9%98%85%E8%AF%BB/">阅读</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;邮箱&#34;&gt;&lt;span&gt;邮箱&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%82%ae%e7%ae%b1&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;邮箱服务器IP被屏蔽：https://docs.ksyun.com/documents/1484&#x9;http://www.openrbl.org&lt;/p&gt;</description>
    </item>
    <item>
      <title>2万英尺职责范围</title>
      <link>https://blog.mulinux.com/en/2%E4%B8%87%E8%8B%B1%E5%B0%BA%E8%81%8C%E8%B4%A3%E8%8C%83%E5%9B%B4/</link>
      <pubDate>Tue, 17 Nov 2020 14:42:33 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/2%E4%B8%87%E8%8B%B1%E5%B0%BA%E8%81%8C%E8%B4%A3%E8%8C%83%E5%9B%B4/</guid>
      <category domain="https://blog.mulinux.com/en/categories/devops/">Devops</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;2万英尺职责范围&#34;&gt;&lt;span&gt;2万英尺职责范围&lt;/span&gt;&#xA;  &lt;a href=&#34;#2%e4%b8%87%e8%8b%b1%e5%b0%ba%e8%81%8c%e8%b4%a3%e8%8c%83%e5%9b%b4&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/2%E4%B8%87%E8%8B%B1%E5%B0%BA%E8%81%8C%E8%B4%A3%E8%8C%83%E5%9B%B4.png&#39; alt=&#34;2万英尺职责范围&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Devops思维导图</title>
      <link>https://blog.mulinux.com/en/devops%E6%80%9D%E7%BB%B4%E5%AF%BC%E5%9B%BE/</link>
      <pubDate>Tue, 17 Nov 2020 14:41:24 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/devops%E6%80%9D%E7%BB%B4%E5%AF%BC%E5%9B%BE/</guid>
      <category domain="https://blog.mulinux.com/en/categories/devops/">Devops</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;devops-keep-leaning&#34;&gt;&lt;span&gt;devops-keep-leaning&lt;/span&gt;&#xA;  &lt;a href=&#34;#devops-keep-leaning&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/devops-keep-leaning-1605595230336.jpg&#39; alt=&#34;devops-keep-leaning&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Frp 内网穿透配置</title>
      <link>https://blog.mulinux.com/en/frp-intranet-through/</link>
      <pubDate>Mon, 16 Nov 2020 13:31:36 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/frp-intranet-through/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;frpserverconf&#34;&gt;&lt;span&gt;frpserver.conf&lt;/span&gt;&#xA;  &lt;a href=&#34;#frpserverconf&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;a href=&#34;https://github.com/fatedier/frp/blob/master/conf/frps_full.ini&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;https://github.com/fatedier/frp/blob/master/conf/frps_full.ini&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Github&#43;Jsdelivr&#43;Picgo实现图床</title>
      <link>https://blog.mulinux.com/en/github-jsdelivr-picgo/</link>
      <pubDate>Mon, 16 Nov 2020 11:21:04 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/github-jsdelivr-picgo/</guid>
      <category domain="https://blog.mulinux.com/en/categories/development/">Development</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;github&#34;&gt;&lt;span&gt;Github&lt;/span&gt;&#xA;  &lt;a href=&#34;#github&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;创建一个public项目&lt;/li&gt;&#xA;&lt;li&gt;生成token（repo权限）&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;picgo--jsdelivr配置&#34;&gt;&lt;span&gt;PicGo + jsDelivr配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#picgo--jsdelivr%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;仓库名格式：用户名/仓库名&lt;/p&gt;</description>
    </item>
    <item>
      <title>Github&#43;Netlify&#43;Coding&#43;Hugo搭建blog</title>
      <link>https://blog.mulinux.com/en/github-netlify-coding-hugo-blog/</link>
      <pubDate>Mon, 09 Nov 2020 20:48:38 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/github-netlify-coding-hugo-blog/</guid>
      <category domain="https://blog.mulinux.com/en/categories/development/">Development</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;静态站双线配置&#34;&gt;&lt;span&gt;静态站双线配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%9d%99%e6%80%81%e7%ab%99%e5%8f%8c%e7%ba%bf%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;参考：&lt;/p&gt;</description>
    </item>
    <item>
      <title>Grafana Dashboard Backup for Api</title>
      <link>https://blog.mulinux.com/en/grafana-dashboard-backup-for-api/</link>
      <pubDate>Mon, 24 Aug 2020 13:36:39 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/grafana-dashboard-backup-for-api/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;脚本&#34;&gt;&lt;span&gt;脚本&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%84%9a%e6%9c%ac&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;使用方法：bash /mds/grafanaback/grafana_bashboard_bak.sh http://192.168.1.199:9999 TOKEN&lt;/p&gt;</description>
    </item>
    <item>
      <title>Kvm QGA(Qemu Guest Agent)部署</title>
      <link>https://blog.mulinux.com/en/kvm-qemu-guest-agent/</link>
      <pubDate>Tue, 11 Aug 2020 09:33:46 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/kvm-qemu-guest-agent/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;解决问题&#34;&gt;&lt;span&gt;解决问题&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%a7%a3%e5%86%b3%e9%97%ae%e9%a2%98&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;重置KVM虚拟机密码&lt;/p&gt;</description>
    </item>
    <item>
      <title>CentOS7 LVM扩容</title>
      <link>https://blog.mulinux.com/en/centos-lvm-extend/</link>
      <pubDate>Mon, 27 Jul 2020 13:08:59 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos-lvm-extend/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;创建基于分区的lv&#34;&gt;&lt;span&gt;创建基于分区的LV&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%9b%e5%bb%ba%e5%9f%ba%e4%ba%8e%e5%88%86%e5%8c%ba%e7%9a%84lv&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;fdisk /dev/vda&#xA;n&#xA;p&#xA;1&#xA;t&#xA;8e&#xA;w&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;创建基于分区的物理卷&#34;&gt;&lt;span&gt;创建基于分区的物理卷&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%9b%e5%bb%ba%e5%9f%ba%e4%ba%8e%e5%88%86%e5%8c%ba%e7%9a%84%e7%89%a9%e7%90%86%e5%8d%b7&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;pvcreate /dev/vda3 &lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;创建卷组&#34;&gt;&lt;span&gt;创建卷组&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%9b%e5%bb%ba%e5%8d%b7%e7%bb%84&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vgcreate soft /dev/sdb1&#x9;# 此次操作为扩容，不需创建&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;将新的物理卷添加到现有卷组&#34;&gt;&lt;span&gt;将新的物理卷添加到现有卷组&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%b0%86%e6%96%b0%e7%9a%84%e7%89%a9%e7%90%86%e5%8d%b7%e6%b7%bb%e5%8a%a0%e5%88%b0%e7%8e%b0%e6%9c%89%e5%8d%b7%e7%bb%84&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vgextend centos /dev/vda3 &#xA;vgs&#xA;lvs&#xA;lvextend -L 299.49G /dev/mapper/centos-root &#xA;xfs_growfs /dev/mapper/centos-root &lt;/code&gt;&lt;/pre&gt;&lt;p&gt;参考：https://www.cnblogs.com/zhaojingyu/p/11647706.html&lt;/p&gt;</description>
    </item>
    <item>
      <title>通过进程恢复kvm qcow2文件</title>
      <link>https://blog.mulinux.com/en/kvm-process-restore-qcow2/</link>
      <pubDate>Mon, 15 Jun 2020 09:51:09 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/kvm-process-restore-qcow2/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;删除镜像与配置文件&#34;&gt;&lt;span&gt;删除镜像与配置文件&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%a0%e9%99%a4%e9%95%9c%e5%83%8f%e4%b8%8e%e9%85%8d%e7%bd%ae%e6%96%87%e4%bb%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;virsh undefine TEST&#xA;rm -f /home/images/TEST.qcow2&lt;/code&gt;&lt;/pre&gt;&lt;img src=&#34;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/image-20200615095204075.png&#34; alt=&#34;image-20200615095204075&#34; style=&#34;zoom:150%;&#34; /&gt;&#xA;&lt;img src=&#34;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/image-20200615095236340.png&#34; alt=&#34;image-20200615095236340&#34; style=&#34;zoom:150%;&#34; /&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;查找进程并记录进程号uuidmac&#34;&gt;&lt;span&gt;查找进程并记录进程号、uuid、mac&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%9f%a5%e6%89%be%e8%bf%9b%e7%a8%8b%e5%b9%b6%e8%ae%b0%e5%bd%95%e8%bf%9b%e7%a8%8b%e5%8f%b7uuidmac&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;ps aux |grep TEST.qcow2&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/image-20200615095502171.png&#39; alt=&#34;image-20200615095502171&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>KVM-libvirt编译升级后回退问题记录(&#39;LIBVIRT_PRIVATE_0.10.2&#39; not found)</title>
      <link>https://blog.mulinux.com/en/kvm-libvirt-%E7%BC%96%E8%AF%91%E5%8D%87%E7%BA%A7%E6%81%A2%E5%A4%8D%E5%8E%9F%E7%89%88%E6%9C%AC/</link>
      <pubDate>Sun, 26 Apr 2020 09:51:09 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/kvm-libvirt-%E7%BC%96%E8%AF%91%E5%8D%87%E7%BA%A7%E6%81%A2%E5%A4%8D%E5%8E%9F%E7%89%88%E6%9C%AC/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;问题说明&#34;&gt;&lt;span&gt;问题说明&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%97%ae%e9%a2%98%e8%af%b4%e6%98%8e&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;物理机libvirt版本编译升级至高版本，回退到旧版本后出现报错，如下图&lt;/p&gt;</description>
    </item>
    <item>
      <title>使用FPM制作ARM平台ZabbixAgent RPM包</title>
      <link>https://blog.mulinux.com/en/linux-fpm-rpm/</link>
      <pubDate>Fri, 17 Apr 2020 10:20:41 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-fpm-rpm/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装fpmrpm-build&#34;&gt;&lt;span&gt;安装fpm/rpm-build&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85fpmrpm-build&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;yum install ruby ruby-devel rubygems rpm-build&#xA;https://gems.ruby-china.com/&#xA;gem sources --remove http://rubygems.org/&#xA;gem sources --add https://gems.ruby-china.com/&#xA;gem sources -l&#xA;gem install fpm&#xA;yum install -y rpm-build&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;制作rpm包&#34;&gt;&lt;span&gt;制作RPM包&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%b6%e4%bd%9crpm%e5%8c%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;zabbixagent&#34;&gt;&lt;span&gt;ZabbixAgent&lt;/span&gt;&#xA;  &lt;a href=&#34;#zabbixagent&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;https://cdn.zabbix.com/zabbix/sources/oldstable/4.2/&#xA;yum install -y rpm-build&#xA;tar zxf zabbix-4.2.8.tar.gz&#xA;cd zabbix-4.2.8&#xA;vi misc/init.d/tru64/zabbix_agentd&#xA;变更1：在#!/bin/sh下面添加两行&#xA;    #chkconfig: 345 95 95&#xA;    #description: Zabbix_Agent&#xA;变更2：修改启动位置&#xA;将DAEMON=/usr/local/sbin/zabbix_agentd改为DAEMON=/usr/local/zabbix-agent/sbin/zabbix_agentd&#xA;./configure --prefix=/usr/local/zabbix-agent --enable-agent&#xA;make&#xA;make install&#xA;cp misc/init.d/tru64/zabbix_agentd /usr/local/zabbix-agent/zabbix-agent&#xA;&#xA;vi /home/mds/after-install.sh&#xA;#!/bin/bash&#xA;source /etc/rc.d/init.d/functions&#xA;groupadd zabbix&#xA;useradd -M -g zabbix zabbix -s /sbin/nologin&#xA;mv /usr/local/zabbix-agent/zabbix-agent /etc/init.d/&#xA;chmod &amp;#43;x /etc/init.d/zabbix-agent&#xA;mkdir -p /var/log/zabbix&#xA;chmod -R 755 /var/log/zabbix/&#xA;chown -R zabbix. /var/log/zabbix/&#xA;chmod -R 755 /usr/local/zabbix-agent/&#xA;chown -R zabbix. /usr/local/zabbix-agent/&#xA;chkconfig --add zabbix-agent&#xA;&#xA;exit $?&#xA;&#xA;&#xA;vi /home/mds/after-remove.sh&#xA;#!/bin/bash&#xA;source /etc/rc.d/init.d/functions&#xA;rm -rf /usr/local/zabbix-agent/&#xA;rm -f /etc/init.d/zabbix-agent&#xA;userdel zabbix&#xA;exit $?&#xA;&#xA;fpm -s dir -t rpm --vendor CentOS7.7 -n zabbix-agent -v 4.2.8 -d &amp;#39;pcre,pcre-devel&amp;#39; -C /usr/local/zabbix-agent/ --prefix /usr/local/zabbix-agent/ --after-install /home/mds/after-install.sh --after-remove /home/mds/after-remove.sh&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;zabbixproxy&#34;&gt;&lt;span&gt;ZabbixProxy&lt;/span&gt;&#xA;  &lt;a href=&#34;#zabbixproxy&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;dnf install mysql5-server mysql5-devel mysql5 net-snmp-devel libevent-devel curl-devel&#xA;./configure --prefix=/usr/local/zabbix-proxy --enable-proxy --with-mysql --with-net-snmp --with-libcurl --with-libxml2&#xA;&#xA;&#xA;# cat /home/mds/after-install.sh&#xA;#!/bin/bash&#xA;source /etc/rc.d/init.d/functions&#xA;groupadd zabbix&#xA;useradd -M -g zabbix zabbix -s /sbin/nologin&#xA;mv /usr/local/zabbix-proxy/zabbix-proxy /etc/init.d/&#xA;chmod &amp;#43;x /etc/init.d/zabbix-proxy&#xA;mkdir -p /var/log/zabbix&#xA;chmod -R 755 /var/log/zabbix/&#xA;chown -R zabbix. /var/log/zabbix/&#xA;chmod -R 755 /usr/local/zabbix-proxy/&#xA;chown -R zabbix. /usr/local/zabbix-proxy/&#xA;chkconfig --add zabbix-proxy&#xA;exit $?&#xA;&#xA;&#xA;# cat /home/mds/after-remove.sh&#xA;#!/bin/bash&#xA;source /etc/rc.d/init.d/functions&#xA;rm -rf /usr/local/zabbix-proxy/&#xA;rm -f /etc/init.d/zabbix-proxy&#xA;userdel zabbix&#xA;exit $?&#xA;&#xA;&#xA;fpm -s dir -t rpm --vendor openEuler20.03 -n zabbix-proxy -v 4.2.8 -d &amp;#39;net-snmp-devel,libevent-devel,curl-devel&amp;#39; -C /usr/local/zabbix-proxy/ --prefix /usr/local/zabbix-proxy/ --after-install /home/mds/after-install.sh --after-remove /home/mds/after-remove.sh&#xA;&#xA;create database zabbixproxy character set utf8 collate utf8_bin;&#xA;grant all privileges on zabbixproxy.* to zabbixproxy@&amp;#39;127.0.0.1&amp;#39; identified by &amp;#39;zabbixproxy&amp;#39;;&#xA;set names utf8;&#xA;use zabbixproxy;&#xA;source /root/zabbix-4.2.8/database/mysql/schema.sql&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Linux服务器修改MTU值</title>
      <link>https://blog.mulinux.com/en/linux-set-mtu/</link>
      <pubDate>Tue, 03 Mar 2020 10:16:59 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-set-mtu/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;执行并添加到etcrclocal&#34;&gt;&lt;span&gt;执行并添加到/etc/rc.local&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%89%a7%e8%a1%8c%e5%b9%b6%e6%b7%bb%e5%8a%a0%e5%88%b0etcrclocal&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;echo &amp;ldquo;1460&amp;rdquo;&amp;gt;/sys/class/net/eth1/mtu&lt;/p&gt;</description>
    </item>
    <item>
      <title>Use Kvm</title>
      <link>https://blog.mulinux.com/en/use-kvm/</link>
      <pubDate>Mon, 23 Dec 2019 11:26:11 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-kvm/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;centos6部署kvm&#34;&gt;&lt;span&gt;CentOS6部署kvm&lt;/span&gt;&#xA;  &lt;a href=&#34;#centos6%e9%83%a8%e7%bd%b2kvm&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;安装&#34;&gt;&lt;span&gt;安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;yum install -y qemu-kvm.x86_64 qemu-kvm-tools.x86_64 python-virtinst.noarch qemu-img.x86_64 bridge-utils.x86_64 libvirt virt-manager yum -y groupinstall &amp;#34;desktop&amp;#34;&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;桥接网卡&#34;&gt;&lt;span&gt;桥接网卡&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%a1%a5%e6%8e%a5%e7%bd%91%e5%8d%a1&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;[root@KVM-PM ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0 &#xA;DEVICE=eth0&#xA;#HWADDR=52:54:00:57:40:40&#xA;TYPE=Ethernet&#xA;#UUID=fe15211b-a8fd-4497-9359-d57c792ff8e2&#xA;ONBOOT=yes&#xA;NM_CONTROLLED=no&#xA;BOOTPROTO=static&#xA;IPADDR=172.16.1.11&#xA;NETMASK=255.255.0.0&#xA;BRIDGE=&amp;#34;br0&amp;#34;&#xA;[root@KVM-PM ~]# cat /etc/sysconfig/network-scripts/ifcfg-br0 &#xA;DEVICE=br0&#xA;TYPE=Bridge&#xA;ONBOOT=yes&#xA;NM_CONTROLLED=no&#xA;BOOTPROTO=static&#xA;IPADDR=192.168.168.110&#xA;NETMASK=255.255.255.0&#xA;GATEWAY=192.168.168.1&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;centos7部署kvm&#34;&gt;&lt;span&gt;CentOS7部署KVM&lt;/span&gt;&#xA;  &lt;a href=&#34;#centos7%e9%83%a8%e7%bd%b2kvm&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;yum groupinstall &amp;#34;fonts&amp;#34; &amp;#34;compat-libraries&amp;#34; &amp;#34;core&amp;#34; &amp;#34;development&amp;#34; &amp;#34;guest-agents&amp;#34; &amp;#34;virtualization-client&amp;#34; &amp;#34;virtualization-platform&amp;#34; &amp;#34;virtualization-tools&amp;#34;&#xA;yum install qemu-kvm python-virtinst virt-manager virt-top virt-viewer libvirt libvirt-client libvirt-python libguestfs-tools virt-install qemu-kvm-tools bridge-utils wget net-tools dejavu-lgc-sans-fonts xorg-x11-xauth xorg-x11-xinit xorg-x11-server-utils xorg-x11-font-utils xorg-x11-drv-ati-firmware&#xA;yum install virt-manager&#xA;yum install libvirt&#xA;yum info libvirtd&#xA;yum info libvirt&#xA;yum install qemu-kvm&#xA;yum install qemu-kvm-tools&#xA;service libvirtd start&#xA;systemctl start  libvirtd.service&#xA;systemctl enable  libvirtd.service&#xA;yum install xorg-x11-xauth&#xA;yum install xorg-x11-xauth xorg-x11-xinit xorg-x11-server-utils xorg-x11-font-utils xorg-x11-drv-ati-firmware&#xA;virt-manager&#xA;yum install dejavu-lgc-sans-fonts&#xA;yum install qemu-kvm libvirt virt-install bridge-utils&#xA;lsmod|grep kvm&#xA;brctl show&#xA;route&#xA;ip addr&#xA;yum install -y wget&#xA;yum install -y net-tools&#xA;cd /usr/local/src/&#xA;wget https://fedorapeople.org/groups/virt/virtio-win/virtio-win.repo -O /etc/yum.repos.d/virtio-win.repo&#xA;yum install -y virtio-win&#xA;virt-manager&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;桥接网卡-1&#34;&gt;&lt;span&gt;桥接网卡&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%a1%a5%e6%8e%a5%e7%bd%91%e5%8d%a1-1&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;[root@a43sv ~]# cat /etc/sysconfig/network-scripts/ifcfg-enp5s0 &#xA;TYPE=Ethernet&#xA;BOOTPROTO=static&#xA;DEFROUTE=yes&#xA;PEERDNS=yes&#xA;PEERROUTES=yes&#xA;IPV4_FAILURE_FATAL=no&#xA;IPV6INIT=yes&#xA;IPV6_AUTOCONF=yes&#xA;IPV6_DEFROUTE=yes&#xA;IPV6_PEERDNS=yes&#xA;IPV6_PEERROUTES=yes&#xA;IPV6_FAILURE_FATAL=no&#xA;NAME=enp5s0&#xA;UUID=557dfc61-71cf-4d38-86b3-2f135f862e54&#xA;DEVICE=enp5s0&#xA;ONBOOT=yes&#xA;BRIDGE=br0&#xA;[root@a43sv ~]# cat /etc/sysconfig/network-scripts/ifcfg-br0 &#xA;DEVICE=br0&#xA;TYPE=&amp;#34;Bridge&amp;#34;&#xA;BOOTPROTO=&amp;#34;static&amp;#34;&#xA;ONBOOT=&amp;#34;yes&amp;#34;&#xA;DELAY=&amp;#34;0&amp;#34;&#xA;STP=&amp;#34;yes&amp;#34;&#xA;IPADDR=192.168.168.76&#xA;NETMASK=255.255.255.0&#xA;GATEWAY=192.168.168.1&#xA;DNS1=114.114.114.114&#xA;DNS2=129.29.29.29&#xA;NM_CONTROLLED=no&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;命令行创建windows2016&#34;&gt;&lt;span&gt;命令行创建windows2016&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%91%bd%e4%bb%a4%e8%a1%8c%e5%88%9b%e5%bb%bawindows2016&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;virt-install \&#xA;--name w2k16 \&#xA;--os-type=windows \&#xA;--ram=2048 --vcpus=2 \&#xA;--disk /home/images/w2k16.qcow2,bus=virtio,size=50 \&#xA;--disk /home/images/virtio-win-0.1.171_amd64.vfd,device=floppy \&#xA;--cdrom=/home/images/cn_windows_server_2016_x64_dvd_9718765.iso \&#xA;--network bridge=br0,model=virtio \&#xA;--virt-type kvm&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;收缩镜像&#34;&gt;&lt;span&gt;收缩镜像&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%94%b6%e7%bc%a9%e9%95%9c%e5%83%8f&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;qemu-img convert -c -O qcow2 test.qcow2 test2.qcow2 # test2.qcow2是目标镜像&#xA;qemu-img convert -O qcow2 windows.qcow2 windows_new.qcow2&#xA;virt-sparsify --compress /tmp/centos.qcow2 centos-new.qcow2&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;清除网络相关硬件生成信息&#34;&gt;&lt;span&gt;清除网络相关硬件生成信息&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b8%85%e9%99%a4%e7%bd%91%e7%bb%9c%e7%9b%b8%e5%85%b3%e7%a1%ac%e4%bb%b6%e7%94%9f%e6%88%90%e4%bf%a1%e6%81%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;virt-sysprep -d centos7&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Go学习图谱</title>
      <link>https://blog.mulinux.com/en/go%E5%AD%A6%E4%B9%A0%E5%9B%BE%E8%B0%B1/</link>
      <pubDate>Tue, 30 Jul 2019 14:45:11 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/go%E5%AD%A6%E4%B9%A0%E5%9B%BE%E8%B0%B1/</guid>
      <category domain="https://blog.mulinux.com/en/categories/go/">Go</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;go语言基础知识&#34;&gt;&lt;span&gt;Go语言基础知识&lt;/span&gt;&#xA;  &lt;a href=&#34;#go%e8%af%ad%e8%a8%80%e5%9f%ba%e7%a1%80%e7%9f%a5%e8%af%86&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/golang/Go%E8%AF%AD%E8%A8%80%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%86.png&#39; alt=&#34;Go语言基础知识&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Ubuntu Jupyter Notebook配置golang和python</title>
      <link>https://blog.mulinux.com/en/ubuntu-jupyter-notebook%E9%85%8D%E7%BD%AEgolang%E5%92%8Cpython/</link>
      <pubDate>Tue, 23 Jul 2019 14:37:58 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/ubuntu-jupyter-notebook%E9%85%8D%E7%BD%AEgolang%E5%92%8Cpython/</guid>
      <category domain="https://blog.mulinux.com/en/categories/development/">Development</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;jupyter配置golang和python&#34;&gt;&lt;span&gt;Jupyter配置golang和python&lt;/span&gt;&#xA;  &lt;a href=&#34;#jupyter%e9%85%8d%e7%bd%aegolang%e5%92%8cpython&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;sudo apt install golang&#xA;go env&#xA;jupyter kernelspec list&#xA;python --version&#xA;conda create -n py27 python=2.7&#xA;conda create -n py27 python=2.7 ipykernel&#xA;conda install --prefix=/home/mulinux/anaconda3/envs/py27 ipykernel&#xA;sudo apt-get install python2-pip&#xA;wget http://bootstrap.pypa.io/get-pip.py&#xA;sudo python2.7 get-pip.py&#xA;sudo pip2 install ipykernel&#xA;/root/anaconda3/envs/py27/bin/pip install backports.functools_lru_cache&#xA;/root/anaconda3/envs/py27/bin/pip install tornado==4.5.3&#xA;python2.7 -m ipykernel install --user&#xA;sudo apt-get install libzmq3-dev&#xA;sudo apt-get install pkg-config&#xA;go get -u github.com/gopherdata/gophernotes&#xA;mkdir -p ~/.local/share/jupyter/kernels/gophernotes&#xA;cp /home/mulinux/go/src/github.com/gopherdata/gophernotes/kernel/* ~/.local/share/jupyter/kernels/gophernotes&#xA;cd ~/.local/share/jupyter/kernels/gophernotes&#xA;chmod &amp;#43;w kernel.json&#xA;sudo ln -s $HOME/go/bin/gophernotes /usr/bin/gophernotes&#xA;gophernotes&#xA;&#xA;sudo apt-get remove golang libzmq3-dev&#xA;清理系统：&#xA;sudo apt-get autoclean&#xA;sudo apt-get clean&#xA;sudo apt-get autoremove&#xA;sudo rm -rf /usr/lib/go-1.10&#xA;sudo rm -rf /home/mulinux/go&#xA;wget https://dl.google.com/go/go1.12.7.linux-amd64.tar.gz&#xA;tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz&#xA;export PATH=$PATH:/usr/local/go/bin&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;备注&#34;&gt;&lt;span&gt;备注&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%a4%87%e6%b3%a8&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;jupyter notebook下不支持 package main和main函数的写法，会报runtime error: index out of range&lt;/p&gt;</description>
    </item>
    <item>
      <title>Windows OOBE应答文件制作</title>
      <link>https://blog.mulinux.com/en/windowsoobe%E5%BA%94%E7%AD%94%E6%96%87%E4%BB%B6%E5%88%B6%E4%BD%9C/</link>
      <pubDate>Fri, 12 Jul 2019 10:53:29 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/windowsoobe%E5%BA%94%E7%AD%94%E6%96%87%E4%BB%B6%E5%88%B6%E4%BD%9C/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;系统映像管理器下载并安装&#34;&gt;&lt;span&gt;系统映像管理器下载并安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%b3%bb%e7%bb%9f%e6%98%a0%e5%83%8f%e7%ae%a1%e7%90%86%e5%99%a8%e4%b8%8b%e8%bd%bd%e5%b9%b6%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装包下载链接&#34;&gt;&lt;span&gt;安装包下载链接&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85%e5%8c%85%e4%b8%8b%e8%bd%bd%e9%93%be%e6%8e%a5&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;a href=&#34;https://www.microsoft.com/en-us/download/details.aspx?id=39982&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;https://www.microsoft.com/en-us/download/details.aspx?id=39982&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>powershell执行update-help报错</title>
      <link>https://blog.mulinux.com/en/powershell-update-help/</link>
      <pubDate>Fri, 12 Jul 2019 09:23:07 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/powershell-update-help/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;报错信息&#34;&gt;&lt;span&gt;报错信息&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%8a%a5%e9%94%99%e4%bf%a1%e6%81%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;Update-Help : 无法更新带有 UI 区域性 {zh-CN} 的模块“WindowsUpdateProvider”帮助: 在 HelpInfo XML 文件中检索不到 UI 区域性 zh-CN。确保模块清单中的 HelpInfoUri 属性有效或检查网络连接是否正常，然后重试该命令。&#xA;所在位置 行:1 字符: 1&#xA;&amp;#43; Update-Help -Force&#xA;&amp;#43; ~~~~~~~~~~~~~~~~~~&#xA;    &amp;#43; CategoryInfo : ResourceUnavailable: (:) [Update-Help], Exception&#xA;    &amp;#43; FullyQualifiedErrorId : UnableToRetrieveHelpInfoXml,Microsoft.PowerShell.Commands.UpdateHelpCommand&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;解决办法&#34;&gt;&lt;span&gt;解决办法&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%a7%a3%e5%86%b3%e5%8a%9e%e6%b3%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;&lt;code&gt;Update-Help -ErrorAction SilentlyContinue&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>CentOS7重新部署ixgbe驱动</title>
      <link>https://blog.mulinux.com/en/centos7-install-ixgbe/</link>
      <pubDate>Mon, 15 Apr 2019 08:54:48 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos7-install-ixgbe/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;下载并安装&#34;&gt;&lt;span&gt;下载并安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%8b%e8%bd%bd%e5%b9%b6%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;yum install gcc make&#xA;微软官网下载ixgbe&#xA;tar -xvf ixgbe-5.3.7.tar.gz&#xA;cd ixgbe-5.3.7/src&#xA;make&#xA;modinfo ./ixgbe.ko&#xA;rmmod ixgbe.ko&#xA;modinfo ./ixgbe.ko | grep depend&#xA;modprobe dca&#xA;insmod ./ixgbe.ko&#xA;insmod ./ixgbe.ko FdirPballoc=3 RSS=16&#xA;dmesg&#xA;make install&#xA;modprobe ixgbe&#xA;modinfo ixgbe&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;参考&#34;&gt;&lt;span&gt;参考&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8f%82%e8%80%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;a href=&#34;https://blog.csdn.net/u011846257/article/details/52350369&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;https://blog.csdn.net/u011846257/article/details/52350369&lt;/a&gt;&#xA;&lt;a href=&#34;https://www.linuxidc.com/Linux/2015-06/118300.htm&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;https://www.linuxidc.com/Linux/2015-06/118300.htm&lt;/a&gt;&#xA;&lt;a href=&#34;https://blog.csdn.net/zhang_danf/article/details/17758669&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;https://blog.csdn.net/zhang_danf/article/details/17758669&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>护眼背景色</title>
      <link>https://blog.mulinux.com/en/%E6%8A%A4%E7%9C%BC%E8%83%8C%E6%99%AF%E8%89%B2/</link>
      <pubDate>Sun, 17 Mar 2019 08:48:58 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E6%8A%A4%E7%9C%BC%E8%83%8C%E6%99%AF%E8%89%B2/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;护眼背景色&#34;&gt;&lt;span&gt;护眼背景色&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%8a%a4%e7%9c%bc%e8%83%8c%e6%99%af%e8%89%b2&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;c7edcc&#xA;002b35&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>CentOS7部署httpd2.4.8(需支持perl)</title>
      <link>https://blog.mulinux.com/en/centos7%E9%83%A8%E7%BD%B2httpd2.4.38/</link>
      <pubDate>Thu, 24 Jan 2019 10:42:04 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos7%E9%83%A8%E7%BD%B2httpd2.4.38/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;依赖包安装&#34;&gt;&lt;span&gt;依赖包安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%be%9d%e8%b5%96%e5%8c%85%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;yum -y install  gcc gcc-c&amp;#43;&amp;#43; make zlib zlib-devel openssl expat-devel  openssl-devel pcre pcre-devel&#xA;相关包下载地址：https://mirrors.tuna.tsinghua.edu.cn/apache/&#xA;apr-1.6.5.tar.gz&#xA;apr-util-1.6.1.tar.gz&#xA;httpd-2.4.37.tar.gz&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装&#34;&gt;&lt;span&gt;安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;./configure --prefix=/usr/local/apr&#xA;#rm如果报错，修改configure文件，RM=&amp;#39;$RM&amp;#39; 修改为RM=&amp;#39;$RM -f&amp;#39;&#xA;make &amp;amp;&amp;amp; make install&#xA;安装apr-util&#xA;./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/&#xA;make &amp;amp;&amp;amp; make install&#xA;安装httpd&#xA;./configure \&#xA;--prefix=/usr/local/apache/ \&#xA;--with-apr=/usr/local/apr/ \&#xA;--with-apr-util=/usr/local/apr-util/ \&#xA;--enable-so \&#xA;--enable-ssl\&#xA;--enable-alib\&#xA;--with-ssl\&#xA;--with--pcre\&#xA;--enable-deflate=shared \&#xA;--enable-expires=shared \&#xA;--enable-rewrite=shared \&#xA;--enable-static-support&#xA;make &amp;amp;&amp;amp; make install&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;mod_perl支持&#34;&gt;&lt;span&gt;mod_perl支持&lt;/span&gt;&#xA;  &lt;a href=&#34;#mod_perl%e6%94%af%e6%8c%81&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;otrs系统原本使用的是centos yum安装的httpd2.4.6版本，因安全基线要求，编译了2.4.38至/usr/local/apache目录下，因程序是perl，所以需要添加mod_perl支持&#xA;&lt;code&gt;cp /usr/lib64/httpd/modules/mod_perl.so /usr/local/apache/modules/&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Python 开发环境</title>
      <link>https://blog.mulinux.com/en/python-dev-env/</link>
      <pubDate>Sat, 19 Jan 2019 14:53:12 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/python-dev-env/</guid>
      <category domain="https://blog.mulinux.com/en/categories/development/">Development</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;python开发环境&#34;&gt;&lt;span&gt;python开发环境&lt;/span&gt;&#xA;  &lt;a href=&#34;#python%e5%bc%80%e5%8f%91%e7%8e%af%e5%a2%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;git clone https://github.com/pyenv/pyenv-virtualenv.git $(pyenv root)/plugins/pyenv-virtualenv&#xA;echo &amp;#39;eval &amp;#34;$(pyenv virtualenv-init -)&amp;#34;&amp;#39; &amp;gt;&amp;gt; ~/.bash_profile&#xA;echo &amp;#39;eval &amp;#34;$(pyenv virtualenv-init -)&amp;#34;&amp;#39; &amp;gt;&amp;gt; ~/.zshenv&#xA;exec &amp;#34;$SHELL&amp;#34;&#xA;pyenv virtualenv 3.6.9 ops-drf-env-3.6.9&#xA;pyenv activate ops-drf-env-3.6.9&#xA;pip install Django==1.11&#xA;pip install MySQLdb&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>齐治堡垒机Shterm Api Python调用示例</title>
      <link>https://blog.mulinux.com/en/shterm-api-python-example/</link>
      <pubDate>Fri, 11 Jan 2019 13:47:09 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/shterm-api-python-example/</guid>
      <category domain="https://blog.mulinux.com/en/categories/python/">Python</category>
      <category domain="https://blog.mulinux.com/en/categories/development/">Development</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;通过接口管理shterm&#34;&gt;&lt;span&gt;通过接口管理shterm&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%80%9a%e8%bf%87%e6%8e%a5%e5%8f%a3%e7%ae%a1%e7%90%86shterm&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;以下是示例代码，可根据接口文档进行编写自己的管理代码。&lt;/p&gt;</description>
    </item>
    <item>
      <title>魔方网表api记录</title>
      <link>https://blog.mulinux.com/en/magicflu-api-example/</link>
      <pubDate>Wed, 28 Nov 2018 14:12:28 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/magicflu-api-example/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;魔方网表api接口记录&#34;&gt;&lt;span&gt;魔方网表API接口记录&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%ad%94%e6%96%b9%e7%bd%91%e8%a1%a8api%e6%8e%a5%e5%8f%a3%e8%ae%b0%e5%bd%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;/s/json/{spaceId}/forms/{formId}?selector={selector} 　　　　##label就是名字，name就是字段id &#xA;/s/json/{spaceId}/forms/{formId}/records/feed和/s/json/{spaceId}/forms/{formId}/records/feed?{query}　　　　##是记录列表的JSON接口&#xA;/s/json/{spaceId}/forms/{formId}/records/{recordId}　　　　　　##单条记录的JSON接口&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Pycharm Set</title>
      <link>https://blog.mulinux.com/en/pycharm-set/</link>
      <pubDate>Thu, 22 Nov 2018 11:39:23 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/pycharm-set/</guid>
      <category domain="https://blog.mulinux.com/en/categories/python/">Python</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;文件信息配置&#34;&gt;&lt;span&gt;文件信息配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%96%87%e4%bb%b6%e4%bf%a1%e6%81%af%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ol&gt;&#xA;&lt;li&gt;打开pycharm，选择File-Settings&lt;/li&gt;&#xA;&lt;li&gt;选择Editor&amp;ndash;Color&amp;amp;Style&amp;ndash;File and Templates&amp;ndash;Python-Script&lt;/li&gt;&#xA;&lt;/ol&gt;&#xA;&lt;pre&gt;&lt;code&gt;##!/usr/bin/python3&#xA;# -*- coding: utf-8 -*-&#xA;# @Time    : ${DATE} ${TIME}&#xA;# @Author  : lin.chen&#xA;# @Email   : it@mulinux.com&#xA;# @File    : ${NAME}.py&#xA;# @Software: ${PRODUCT_NAME}&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Deepin安装使用KVM</title>
      <link>https://blog.mulinux.com/en/deepin-kvm/</link>
      <pubDate>Wed, 21 Nov 2018 11:20:19 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/deepin-kvm/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装&#34;&gt;&lt;span&gt;安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;sudo apt-get install kvm qtemu ##安装kvm和qt前端&#xA;apt install qemu-kvm libvirt-clients qemu-utils libvirt-daemon-system    # deepin 15.8&#xA;sudo apt-get install qemu-system    #deepin 15.8&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;卸载&#34;&gt;&lt;span&gt;卸载&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8d%b8%e8%bd%bd&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;sudo apt-get remove kvm qtemu ##卸载kvm和qt前端&#xA;apt-get install libvirt-bin virt-manager ##工作常用工具&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;ovf-to-qcow2&#34;&gt;&lt;span&gt;ovf to qcow2&lt;/span&gt;&#xA;  &lt;a href=&#34;#ovf-to-qcow2&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;sudo apt-get install qemu-utils&#xA;qemu-img convert -O qcow2 input.vmdk output.qcow2&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Docker Image Management</title>
      <link>https://blog.mulinux.com/en/docker-image/</link>
      <pubDate>Tue, 16 Oct 2018 17:39:00 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/docker-image/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;install-docker&#34;&gt;&lt;span&gt;Install Docker&lt;/span&gt;&#xA;  &lt;a href=&#34;#install-docker&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;Centos6.6_x64&#xA;[root@web1 ~]# uname -a&#xA;Linux web1.mulinux.com 2.6.32-504.el6.x86_64 #1 SMP Wed Oct 15 04:27:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux&#xA;[root@web1 ~]# yum install -y epel-release&#xA;[root@web1 ~]# yum install -y docker-io&#xA;[root@web1 ~]# /etc/init.d/docker start&#xA;[root@web1 ~]# ps aux | grep docker&#xA;root 1591 1.0 1.4 287656 14224 pts/0 Sl 18:30 0:00 /usr/bin/docker -d&#xA;root 1709 0.0 0.0 103244 864 pts/0 S&amp;#43; 18:31 0:00 grep docker&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;image-management&#34;&gt;&lt;span&gt;Image Management&lt;/span&gt;&#xA;  &lt;a href=&#34;#image-management&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[root@web1 ~]# docker pull centos&#xA;latest: Pulling from centos&#xA;47d44cb6f252: Pull complete &#xA;6fdebd7b0eb5: Pull complete &#xA;a63aae4d216f: Pull complete &#xA;bb3d629a7cbc: Pull complete &#xA;Digest: sha256:381f21e4c7b3724c6f420b2bcfa6e13e47ed155192869a2a04fa10f944c78476&#xA;Status: Downloaded newer image for centos:latest&#xA;[root@web1 ~]# docker images&#xA;REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE&#xA;centos latest bb3d629a7cbc 2 weeks ago 196.6 MB&#xA;[root@web1 ~]# docker tag centos mulinux123&#xA;[root@web1 ~]# docker images&#xA;REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE&#xA;centos latest bb3d629a7cbc 2 weeks ago 196.6 MB&#xA;mulinux123 latest bb3d629a7cbc 2 weeks ago 196.6 MB  &#xA;[root@web1 ~]# docker run -it centos /bin/bash #start a container from image&#xA;[root@32c67b2b18e0 /]# w&#xA; 12:30:01 up 2:09, 0 users, load average: 0.06, 0.01, 0.00&#xA;USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT&#xA;[root@32c67b2b18e0 /]# exit&#xA;exit&#xA;[root@web1 ~]# docker ps #list running containers&#xA;[root@web1 ~]# docker ps -a #list all containers including stopped&#xA;CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES&#xA;32c67b2b18e0 centos &amp;#34;/bin/bash&amp;#34; 2 minutes ago Exited (0) About a minute ago modest_kowalevski &#xA;[root@web1 ~]# docker images&#xA;REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE&#xA;centos latest bb3d629a7cbc 2 weeks ago 196.6 MB&#xA;mulinux123 latest bb3d629a7cbc 2 weeks ago 196.6 MB&#xA;[root@web1 ~]# docker rmi bb3d629a7cbc #deleting by ID removes all images with same ID&#xA;[root@web1 ~]# docker rmi mulinux123&#xA;Untagged: mulinux123:latest&#xA;[root@web1 ~]# docker images&#xA;REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE&#xA;centos latest bb3d629a7cbc 2 weeks ago 196.6 MB&#xA;[root@web1 ~]# docker tag centos centos:mulinux&#xA;[root@web1 ~]# docker images&#xA;REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE&#xA;centos latest bb3d629a7cbc 2 weeks ago 196.6 MB&#xA;centos mulinux bb3d629a7cbc 2 weeks ago 196.6 MB&#xA;[root@web1 ~]# docker rmi centos:mulinux&#xA;Untagged: centos:mulinux&#xA;[root@web1 ~]# docker images&#xA;REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE&#xA;centos latest bb3d629a7cbc 2 weeks ago 196.6 MB&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Apache主机使用.htaccess文件实现301跳转</title>
      <link>https://blog.mulinux.com/en/apache-htaccess-301/</link>
      <pubDate>Wed, 10 Oct 2018 11:18:12 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/apache-htaccess-301/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;php主机301设置&#34;&gt;&lt;span&gt;PHP主机301设置：&lt;/span&gt;&#xA;  &lt;a href=&#34;#php%e4%b8%bb%e6%9c%ba301%e8%ae%be%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;将以下规则添加到.htaccess文件&lt;/p&gt;</description>
    </item>
    <item>
      <title>Typecho Blog 环境配置</title>
      <link>https://blog.mulinux.com/en/typecho-blog-env/</link>
      <pubDate>Sun, 07 Oct 2018 14:58:55 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/typecho-blog-env/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;mariadb-10-安装&#34;&gt;&lt;span&gt;MariaDB 10 安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#mariadb-10-%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;mariadb-repo&#34;&gt;&lt;span&gt;MariaDB repo&lt;/span&gt;&#xA;  &lt;a href=&#34;#mariadb-repo&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;cat /etc/yum.repos.d/MariaDB10.repo&#xA;# MariaDB 10.0 CentOS repository list - created 2014-09-28 09:10 UTC&#xA;# http://mariadb.org/mariadb/repositories/&#xA;[mariadb]&#xA;name = MariaDB&#xA;baseurl = http://yum.mariadb.org/10.0/centos7-amd64&#xA;gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB&#xA;gpgcheck=1&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;yum--config&#34;&gt;&lt;span&gt;yum &amp;amp; config&lt;/span&gt;&#xA;  &lt;a href=&#34;#yum--config&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;yum install mysql-server mysql-client&#xA;vi /etc/my.cnf.d/server.cnf&#xA;[mysqld]&#xA;character_set_server=utf8&#xA;init_connect=&amp;#39;SET NAMES utf8&amp;#39;&#xA;&#xA;mysqladmin -u root password &amp;#34;123456&amp;#34;;&#xA;mysql -uroot -p123456 -e &amp;#34;create database mulinux;&#xA;grant all privileges on mulinux.* to mulinux@localhost identified by &amp;#39;123456&amp;#39;;&#xA;flush privileges;&#xA;quit&amp;#34;&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;php7-安装&#34;&gt;&lt;span&gt;PHP7 安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#php7-%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;下载并安装依赖&#34;&gt;&lt;span&gt;下载并安装依赖&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%8b%e8%bd%bd%e5%b9%b6%e5%ae%89%e8%a3%85%e4%be%9d%e8%b5%96&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm&#xA;yum install php71w&#xA;php下载地址：https://link.jianshu.com/?t=http://cn2.php.net/downloads.php&#xA;wget -O php7.tar.gz url/get/from/last/step&#xA;tar -xvf php7.tar.gz&#xA;yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;编译&#34;&gt;&lt;span&gt;编译&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bc%96%e8%af%91&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;cd php-7.1.22&#xA;./configure \&#xA;--prefix=/usr/local/php \&#xA;--with-config-file-path=/etc \&#xA;--enable-fpm \&#xA;--with-fpm-user=nginx \&#xA;--with-fpm-group=nginx \&#xA;--enable-inline-optimization \&#xA;--disable-debug \&#xA;--disable-rpath \&#xA;--enable-shared \&#xA;--enable-soap \&#xA;--with-libxml-dir \&#xA;--with-xmlrpc \&#xA;--with-openssl \&#xA;--with-mcrypt \&#xA;--with-mhash \&#xA;--with-pcre-regex \&#xA;--with-sqlite3 \&#xA;--with-zlib \&#xA;--enable-bcmath \&#xA;--with-iconv \&#xA;--with-bz2 \&#xA;--enable-calendar \&#xA;--with-curl \&#xA;--with-cdb \&#xA;--enable-dom \&#xA;--enable-exif \&#xA;--enable-fileinfo \&#xA;--enable-filter \&#xA;--with-pcre-dir \&#xA;--enable-ftp \&#xA;--with-gd \&#xA;--with-openssl-dir \&#xA;--with-jpeg-dir \&#xA;--with-png-dir \&#xA;--with-zlib-dir \&#xA;--with-freetype-dir \&#xA;--enable-gd-native-ttf \&#xA;--enable-gd-jis-conv \&#xA;--with-gettext \&#xA;--with-gmp \&#xA;--with-mhash \&#xA;--enable-json \&#xA;--enable-mbstring \&#xA;--enable-mbregex \&#xA;--enable-mbregex-backtrack \&#xA;--with-libmbfl \&#xA;--with-onig \&#xA;--enable-pdo \&#xA;--with-mysqli=mysqlnd \&#xA;--with-pdo-mysql=mysqlnd \&#xA;--with-zlib-dir \&#xA;--with-pdo-sqlite \&#xA;--with-readline \&#xA;--enable-session \&#xA;--enable-shmop \&#xA;--enable-simplexml \&#xA;--enable-sockets \&#xA;--enable-sysvmsg \&#xA;--enable-sysvsem \&#xA;--enable-sysvshm \&#xA;--enable-wddx \&#xA;--with-libxml-dir \&#xA;--with-xsl \&#xA;--enable-zip \&#xA;--enable-mysqlnd-compression-support \&#xA;--with-pear \&#xA;--enable-opcache&#xA;&#xA;make &amp;amp;&amp;amp; make install&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;php-env&#34;&gt;&lt;span&gt;php env&lt;/span&gt;&#xA;  &lt;a href=&#34;#php-env&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;vi /etc/profile&#xA;PATH=$PATH:/usr/local/php/bin&#xA;export PATH&#xA;source /etc/profile&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;config-php-fpm&#34;&gt;&lt;span&gt;config php-fpm&lt;/span&gt;&#xA;  &lt;a href=&#34;#config-php-fpm&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;cp php.ini-production /etc/php.ini&#xA;sed -i &amp;#39;/;date.timezone =$/a\date.timezone = &amp;#34;Asia\/Chongqing&amp;#34;&amp;#39; /etc/php.ini&#xA;cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf&#xA;cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf&#xA;cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm&#xA;chmod &amp;#43;x /etc/init.d/php-fpm&#xA;/etc/init.d/php-fpm start&#xA;php -v&#xA;which php&#xA;&#xA;useradd -M -s /sbin/nologin php-fpm&#xA;编辑www.conf，将user和group改成php-fpm&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;phpfpmconf&#34;&gt;&lt;span&gt;phpfpm.conf&lt;/span&gt;&#xA;  &lt;a href=&#34;#phpfpmconf&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;[global]&#xA;pid = /usr/local/php/var/run/php-fpm.pid&#xA;error_log = /usr/local/php/var/log/php-fpm.log&#xA;[www]&#xA;listen = /tmp/php-fcgi.sock&#xA;user = php-fpm&#xA;group = php-fpm&#xA;listen.mode = 0666&#xA;pm = dynamic&#xA;pm.max_children = 50&#xA;pm.start_servers = 20&#xA;pm.min_spare_servers = 5&#xA;pm.max_spare_servers = 35&#xA;pm.max_requests = 500&#xA;rlimit_files = 1024&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;nginx&#34;&gt;&lt;span&gt;Nginx&lt;/span&gt;&#xA;  &lt;a href=&#34;#nginx&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;wget http://nginx.org/download/nginx-1.10.0.tar.gz&#xA;tar -zxvf nginx-1.10.0.tar.gz&#xA;cd nginx-1.10.0/&#xA;yum -y install zlib zlib-devel&#xA;yum -y install pcre pcre-devel&#xA;./configure --with-http_ssl_module&#xA;make&#xA;make install&#xA;/usr/local/nginx/sbin/nginx&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;nginxconf&#34;&gt;&lt;span&gt;nginx.conf&lt;/span&gt;&#xA;  &lt;a href=&#34;#nginxconf&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;user nobody nobody;&#xA;worker_processes 2;&#xA;error_log /usr/local/nginx/logs/nginx_error.log crit;&#xA;pid /usr/local/nginx/logs/nginx.pid;&#xA;worker_rlimit_nofile 51200;&#xA;&#xA;events&#xA;{&#xA;    use epoll;&#xA;    worker_connections 6000;&#xA;}&#xA;&#xA;http&#xA;{&#xA;    include mime.types;&#xA;    default_type application/octet-stream;&#xA;    server_names_hash_bucket_size 3526;&#xA;    server_names_hash_max_size 4096;&#xA;    log_format combined_realip &amp;#39;$remote_addr $http_x_forwarded_for [$time_local]&amp;#39;&#xA;    &amp;#39;$host &amp;#34;$request_uri&amp;#34; $status&amp;#39;&#xA;    &amp;#39;&amp;#34;$http_referer&amp;#34; &amp;#34;$http_user_agent&amp;#34;&amp;#39;;&#xA;    sendfile on;&#xA;    tcp_nopush on;&#xA;    keepalive_timeout 30;&#xA;    client_header_timeout 3m;&#xA;    client_body_timeout 3m;&#xA;    send_timeout 3m;&#xA;    connection_pool_size 256;&#xA;    client_header_buffer_size 1k;&#xA;    large_client_header_buffers 8 4k;&#xA;    request_pool_size 4k;&#xA;    output_buffers 4 32k;&#xA;    postpone_output 1460;&#xA;    client_max_body_size 10m;&#xA;    client_body_buffer_size 256k;&#xA;    client_body_temp_path /usr/local/nginx/client_body_temp;&#xA;    proxy_temp_path /usr/local/nginx/proxy_temp;&#xA;    fastcgi_temp_path /usr/local/nginx/fastcgi_temp;&#xA;    fastcgi_intercept_errors on;&#xA;    tcp_nodelay on;&#xA;    gzip on;&#xA;    gzip_min_length 1k;&#xA;    gzip_buffers 4 8k;&#xA;    gzip_comp_level 5;&#xA;    gzip_http_version 1.1;&#xA;    gzip_types text/plain application/x-javascript text/css text/htm application/xml;&#xA;&#xA;server&#xA;{&#xA;    listen 80;&#xA;    server_name localhost;&#xA;    index index.html index.htm index.php;&#xA;    root /usr/local/nginx/html;&#xA;&#xA;    location ~ \.php$ {&#xA;        include fastcgi_params;&#xA;        fastcgi_pass unix:/tmp/php-fcgi.sock;&#xA;        fastcgi_index index.php;&#xA;        fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;&#xA;    }&#xA;&#xA;}&#xA;&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;nginx_init&#34;&gt;&lt;span&gt;nginx_init&lt;/span&gt;&#xA;  &lt;a href=&#34;#nginx_init&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;#!/bin/bash&#xA;# chkconfig: - 30 21&#xA;# description: http service.&#xA;# Source Function Library&#xA;. /etc/init.d/functions&#xA;# Nginx Settings&#xA;&#xA;NGINX_SBIN=&amp;#34;/usr/local/nginx/sbin/nginx&amp;#34;&#xA;NGINX_CONF=&amp;#34;/usr/local/nginx/conf/nginx.conf&amp;#34;&#xA;NGINX_PID=&amp;#34;/usr/local/nginx/logs/nginx.pid&amp;#34;&#xA;RETVAL=0&#xA;prog=&amp;#34;Nginx&amp;#34;&#xA;&#xA;start() {&#xA;        echo -n $&amp;#34;Starting $prog: &amp;#34;&#xA;        mkdir -p /dev/shm/nginx_temp&#xA;        daemon $NGINX_SBIN -c $NGINX_CONF&#xA;        RETVAL=$?&#xA;        echo&#xA;        return $RETVAL&#xA;}&#xA;&#xA;stop() {&#xA;        echo -n $&amp;#34;Stopping $prog: &amp;#34;&#xA;        killproc -p $NGINX_PID $NGINX_SBIN -TERM&#xA;        rm -rf /dev/shm/nginx_temp&#xA;        RETVAL=$?&#xA;        echo&#xA;        return $RETVAL&#xA;}&#xA;&#xA;reload(){&#xA;        echo -n $&amp;#34;Reloading $prog: &amp;#34;&#xA;        killproc -p $NGINX_PID $NGINX_SBIN -HUP&#xA;        RETVAL=$?&#xA;        echo&#xA;        return $RETVAL&#xA;}&#xA;&#xA;restart(){&#xA;        stop&#xA;        start&#xA;}&#xA;&#xA;configtest(){&#xA;    $NGINX_SBIN -c $NGINX_CONF -t&#xA;    return 0&#xA;}&#xA;&#xA;case &amp;#34;$1&amp;#34; in&#xA;  start)&#xA;        start&#xA;        ;;&#xA;  stop)&#xA;        stop&#xA;        ;;&#xA;  reload)&#xA;        reload&#xA;        ;;&#xA;  restart)&#xA;        restart&#xA;        ;;&#xA;  configtest)&#xA;        configtest&#xA;        ;;&#xA;  *)&#xA;        echo $&amp;#34;Usage: $0 {start|stop|reload|restart|configtest}&amp;#34;&#xA;        RETVAL=1&#xA;esac&#xA;&#xA;exit $RETVAL&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;nginx-配置访问项目目录并支持-php-的-pathinfo-模式配置实践时未使用&#34;&gt;&lt;span&gt;nginx 配置访问项目目录并支持 PHP 的 pathinfo 模式配置（实践时未使用）&lt;/span&gt;&#xA;  &lt;a href=&#34;#nginx-%e9%85%8d%e7%bd%ae%e8%ae%bf%e9%97%ae%e9%a1%b9%e7%9b%ae%e7%9b%ae%e5%bd%95%e5%b9%b6%e6%94%af%e6%8c%81-php-%e7%9a%84-pathinfo-%e6%a8%a1%e5%bc%8f%e9%85%8d%e7%bd%ae%e5%ae%9e%e8%b7%b5%e6%97%b6%e6%9c%aa%e4%bd%bf%e7%94%a8&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;server {&#xA;        listen 80;&#xA;        server_name xxx.xxxx.com; # 你的域名&#xA; location / {&#xA;     root /var/www/xxx项目目录/;&#xA;     index index.php;&#xA; }&#xA;        location ~ ^(.&amp;#43;\.php)(.*)$ {&#xA;     root /var/www/xxx项目目录/;&#xA;     fastcgi_pass 127.0.0.1:9000;&#xA;     fastcgi_index index.php;&#xA;     fastcgi_split_path_info ^(.&amp;#43;\.php)(.*)$;&#xA;     fastcgi_param PATH_INFO $fastcgi_path_info;&#xA;     if (!-e $document_root$fastcgi_script_name) {&#xA;         return 404;&#xA;     }&#xA;     fastcgi_param SCRIPT_FILENAME$document_root$fastcgi_script_name;&#xA;     include fastcgi_params;&#xA;         }&#xA;    }&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;certbot-ssl-lets-encrypt&#34;&gt;&lt;span&gt;certbot ssl Let&amp;rsquo;s Encrypt&lt;/span&gt;&#xA;  &lt;a href=&#34;#certbot-ssl-lets-encrypt&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx&#xA;ln -s /usr/local/nginx/conf/ /etc/nginx&#xA;yum -y install yum-utils&#xA;yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional&#xA;yum install python2-certbot-nginx&#xA;certbot --nginx&#xA;&#xA;#### 添加更新的计划任务&#xA;0 0,12 * * * python -c &amp;#39;import random; import time; time.sleep(random.random() * 3600)&amp;#39; &amp;amp;&amp;amp; certbot renew &#xA;&#xA;#### 参考&#xA;https://github.com/jaywcjlove/handbook/blob/master/CentOS/%E4%BD%BF%E7%94%A8%E5%85%8D%E8%B4%B9SSL%E8%AF%81%E4%B9%A6%E8%AE%A9%E7%BD%91%E7%AB%99%E6%94%AF%E6%8C%81HTTPS%E8%AE%BF%E9%97%AE.md#nginx%E5%BA%94%E7%94%A8%E8%AF%A5%E8%AF%81%E4%B9%A6%E7%9A%84%E4%BE%8B%E5%AD%90&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;添加typecho-伪静态配置&#34;&gt;&lt;span&gt;添加typecho 伪静态配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b7%bb%e5%8a%a0typecho-%e4%bc%aa%e9%9d%99%e6%80%81%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;参考文章：http://docs.typecho.org/servers&lt;/p&gt;</description>
    </item>
    <item>
      <title>CentOS6/7开启nested嵌套虚拟化</title>
      <link>https://blog.mulinux.com/en/kvm-enable-nested/</link>
      <pubDate>Sat, 06 Oct 2018 14:25:16 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/kvm-enable-nested/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;启用nested&#34;&gt;&lt;span&gt;启用nested&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%90%af%e7%94%a8nested&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;centos6&#34;&gt;&lt;span&gt;CentOS6&lt;/span&gt;&#xA;  &lt;a href=&#34;#centos6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;升级系统内核到Linux 3.X版本&#xA;rpm -ivh kernel-ml-3.18.3-1.el6.elrepo.x86_64.rpm&#xA;修改grub.conf&#xA;vi /etc/grub.conf&#xA;将default=1改为default=0；且在 kernel 那一行的末端加上 &amp;ldquo;kvm-intel.nested=1&amp;rdquo;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Use Lvs</title>
      <link>https://blog.mulinux.com/en/use-lvs/</link>
      <pubDate>Mon, 17 Sep 2018 13:32:33 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-lvs/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;参考&#34;&gt;&lt;span&gt;参考&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8f%82%e8%80%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;a href=&#34;http://kb.linuxvirtualserver.org/images/c/c8/LVS%E6%93%8D%E4%BD%9C%E6%89%8B%E5%86%8C.zip&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;http://kb.linuxvirtualserver.org/images/c/c8/LVS%E6%93%8D%E4%BD%9C%E6%89%8B%E5%86%8C.zip&lt;/a&gt;&#xA;&lt;a href=&#34;http://github.com/alibaba/LVS&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;http://github.com/alibaba/LVS&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>HPGen9做万兆网卡直通时报错</title>
      <link>https://blog.mulinux.com/en/hpgen9%E5%81%9A%E4%B8%87%E5%85%86%E7%BD%91%E5%8D%A1%E7%9B%B4%E9%80%9A%E6%97%B6%E6%8A%A5%E9%94%99/</link>
      <pubDate>Sat, 18 Aug 2018 12:41:34 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/hpgen9%E5%81%9A%E4%B8%87%E5%85%86%E7%BD%91%E5%8D%A1%E7%9B%B4%E9%80%9A%E6%97%B6%E6%8A%A5%E9%94%99/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;vi-etcgrub2cnf&#34;&gt;&lt;span&gt;vi /etc/grub2.cnf&lt;/span&gt;&#xA;  &lt;a href=&#34;#vi-etcgrub2cnf&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;在内核那一行添加”intel_iommu=on“&#xA;重启后检查：cat /proc/cmdline | grep iommu&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;dmesggrep--e-dmar--e-iommu&#34;&gt;&lt;span&gt;dmesg|grep -e DMAR -e IOMMU&lt;/span&gt;&#xA;  &lt;a href=&#34;#dmesggrep--e-dmar--e-iommu&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;报错：vfio-pci 0000:04:00.3: Device is ineligible for IOMMU domain attach due to platform RMRR requirement. Contact your platform vendor.&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;根据报错在hp论坛查找到该错误信息&#34;&gt;&lt;span&gt;根据报错在hp论坛查找到该错误信息&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%a0%b9%e6%8d%ae%e6%8a%a5%e9%94%99%e5%9c%a8hp%e8%ae%ba%e5%9d%9b%e6%9f%a5%e6%89%be%e5%88%b0%e8%af%a5%e9%94%99%e8%af%af%e4%bf%a1%e6%81%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;https://support.hpe.com/hpsc/doc/public/display?sp4ts.oid=7271259&amp;amp;docId=emr_na-c04781229&amp;amp;docLocale=en_US&#xA;&#xA;https://community.hpe.com/t5/ProLiant-Servers-ML-DL-SL/Device-is-ineligible-for-IOMMU-domain-attach-due-to-platform/td-p/6751904&#xA;&#xA;通过lspci -vvv | grep Ethernet可以查看到网卡的具体型号&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;解决方案&#34;&gt;&lt;span&gt;解决方案：&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%a7%a3%e5%86%b3%e6%96%b9%e6%a1%88&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/image-20201117124038967.png&#39; alt=&#34;image-20201117124038967&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Hadoop2.6集群部署</title>
      <link>https://blog.mulinux.com/en/hadoop2.6%E9%9B%86%E7%BE%A4%E9%83%A8%E7%BD%B2/</link>
      <pubDate>Sun, 15 Jul 2018 14:10:49 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/hadoop2.6%E9%9B%86%E7%BE%A4%E9%83%A8%E7%BD%B2/</guid>
      <category domain="https://blog.mulinux.com/en/categories/hadoop%E7%94%9F%E6%80%81%E5%9C%88/">Hadoop生态圈</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;上传hadoop和jdk安装包并解压&#34;&gt;&lt;span&gt;上传hadoop和jdk安装包并解压&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%8a%e4%bc%a0hadoop%e5%92%8cjdk%e5%ae%89%e8%a3%85%e5%8c%85%e5%b9%b6%e8%a7%a3%e5%8e%8b&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;下载地址&#34;&gt;&lt;span&gt;下载地址：&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%8b%e8%bd%bd%e5%9c%b0%e5%9d%80&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;http://mirror.bit.edu.cn/apache/hadoop/common&#xA;http://www.oracle.com/technetwork/java/javase/downloads/&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;下载并解压&#34;&gt;&lt;span&gt;下载并解压&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%8b%e8%bd%bd%e5%b9%b6%e8%a7%a3%e5%8e%8b&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;wget http://archive.apache.org/dist/hadoop/common/hadoop-2.6.0/hadoop-2.6.1.tar.gz&#xA;tar zxf jdk-8u172-linux-x64.tar.gz&#xA;mv jdk1.8.0_172 /usr/local/&#xA;tar zxf hadoop-2.6.0.tar.gz&#xA;mv hadoop-2.6.0 /usr/local/&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;添加环境变量&#34;&gt;&lt;span&gt;添加环境变量&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b7%bb%e5%8a%a0%e7%8e%af%e5%a2%83%e5%8f%98%e9%87%8f&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;p&gt;vi ~/.bashrc&lt;/p&gt;</description>
    </item>
    <item>
      <title>2008r2用户自动登录</title>
      <link>https://blog.mulinux.com/en/2008r2%E7%94%A8%E6%88%B7%E8%87%AA%E5%8A%A8%E7%99%BB%E5%BD%95/</link>
      <pubDate>Sun, 15 Jul 2018 13:54:51 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/2008r2%E7%94%A8%E6%88%B7%E8%87%AA%E5%8A%A8%E7%99%BB%E5%BD%95/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;control userpasswords2&lt;/p&gt;&#xA;&lt;p&gt;设置用户&amp;quot;要使用本机，用户必须输入用户名和密码&amp;quot;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Otrs Api配置&amp;&amp;Curl测试</title>
      <link>https://blog.mulinux.com/en/otrs-curl-api/</link>
      <pubDate>Fri, 01 Jun 2018 13:27:46 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/otrs-curl-api/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;cmdb字段参考&#34;&gt;&lt;span&gt;CMDB字段参考&lt;/span&gt;&#xA;  &lt;a href=&#34;#cmdb%e5%ad%97%e6%ae%b5%e5%8f%82%e8%80%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;{&#xA;    &amp;#34;ConfigItem&amp;#34;: [&#xA;        {&#xA;            &amp;#34;CurInciState&amp;#34;: &amp;#34;Operational&amp;#34;, &#xA;            &amp;#34;ConfigItemID&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;InciStateType&amp;#34;: &amp;#34;operational&amp;#34;, &#xA;            &amp;#34;CurInciStateType&amp;#34;: &amp;#34;operational&amp;#34;, &#xA;            &amp;#34;Number&amp;#34;: &amp;#34;4722000001&amp;#34;, &#xA;            &amp;#34;CreateBy&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;CurDeplState&amp;#34;: &amp;#34;Production&amp;#34;, &#xA;            &amp;#34;LastVersionID&amp;#34;: &amp;#34;5&amp;#34;, &#xA;            &amp;#34;DeplState&amp;#34;: &amp;#34;Production&amp;#34;, &#xA;            &amp;#34;CreateTime&amp;#34;: &amp;#34;2018-06-01 02:53:44&amp;#34;, &#xA;            &amp;#34;DefinitionID&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;VersionID&amp;#34;: &amp;#34;5&amp;#34;, &#xA;            &amp;#34;DeplStateType&amp;#34;: &amp;#34;productive&amp;#34;, &#xA;            &amp;#34;CIXMLData&amp;#34;: {&#xA;                &amp;#34;SerialNumber&amp;#34;: &amp;#34;ABC513VEFG&amp;#34;, &#xA;                &amp;#34;Ram&amp;#34;: &amp;#34;16G&amp;#34;, &#xA;                &amp;#34;WarrantyExpirationDate&amp;#34;: &amp;#34;2018-05-31&amp;#34;, &#xA;                &amp;#34;Vendor&amp;#34;: &amp;#34;&amp;#34;, &#xA;                &amp;#34;CPU&amp;#34;: [&#xA;                    &amp;#34;6核&amp;#34;, &#xA;                    &amp;#34;&amp;#34;&#xA;                ], &#xA;                &amp;#34;Model&amp;#34;: &amp;#34;ProLiant DL380 Gen9&amp;#34;, &#xA;                &amp;#34;Owner&amp;#34;: &amp;#34;&amp;#34;, &#xA;                &amp;#34;NIC&amp;#34;: {&#xA;                    &amp;#34;NIC&amp;#34;: &amp;#34;10.0.0.1&amp;#34;, &#xA;                    &amp;#34;IPoverDHCP&amp;#34;: &amp;#34;No&amp;#34;&#xA;                }, &#xA;                &amp;#34;Type&amp;#34;: &amp;#34;&amp;#34;, &#xA;                &amp;#34;HardDisk&amp;#34;: {&#xA;                    &amp;#34;HardDisk&amp;#34;: &amp;#34;200G&amp;#34;, &#xA;                    &amp;#34;Capacity&amp;#34;: &amp;#34;&amp;#34;&#xA;                }, &#xA;                &amp;#34;GraphicAdapter&amp;#34;: &amp;#34;&amp;#34;, &#xA;                &amp;#34;FQDN&amp;#34;: &amp;#34;&amp;#34;, &#xA;                &amp;#34;OperatingSystem&amp;#34;: &amp;#34;&amp;#34;, &#xA;                &amp;#34;Description&amp;#34;: &amp;#34;&amp;#34;&#xA;            }, &#xA;            &amp;#34;Class&amp;#34;: &amp;#34;Computer&amp;#34;, &#xA;            &amp;#34;InciState&amp;#34;: &amp;#34;Operational&amp;#34;, &#xA;            &amp;#34;CurDeplStateType&amp;#34;: &amp;#34;productive&amp;#34;, &#xA;            &amp;#34;Name&amp;#34;: &amp;#34;yz-o12-10.0.0.1&amp;#34;&#xA;        }&#xA;    ]&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;工单字段参考&#34;&gt;&lt;span&gt;工单字段参考&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%b7%a5%e5%8d%95%e5%ad%97%e6%ae%b5%e5%8f%82%e8%80%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;{&#xA;    &amp;#34;Ticket&amp;#34;: [&#xA;        {&#xA;            &amp;#34;Age&amp;#34;: 17572057, &#xA;            &amp;#34;PriorityID&amp;#34;: &amp;#34;3&amp;#34;, &#xA;            &amp;#34;ServiceID&amp;#34;: &amp;#34;&amp;#34;, &#xA;            &amp;#34;Type&amp;#34;: &amp;#34;Unclassified&amp;#34;, &#xA;            &amp;#34;Responsible&amp;#34;: &amp;#34;root@localhost&amp;#34;, &#xA;            &amp;#34;StateID&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;ResponsibleID&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;ChangeBy&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;EscalationTime&amp;#34;: &amp;#34;0&amp;#34;, &#xA;            &amp;#34;Changed&amp;#34;: &amp;#34;2018-05-31 23:33:25&amp;#34;, &#xA;            &amp;#34;OwnerID&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;RealTillTimeNotUsed&amp;#34;: &amp;#34;0&amp;#34;, &#xA;            &amp;#34;GroupID&amp;#34;: &amp;#34;2&amp;#34;, &#xA;            &amp;#34;Owner&amp;#34;: &amp;#34;root@localhost&amp;#34;, &#xA;            &amp;#34;CustomerID&amp;#34;: &amp;#34;&amp;#34;, &#xA;            &amp;#34;TypeID&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;Created&amp;#34;: &amp;#34;2017-11-09 15:08:10&amp;#34;, &#xA;            &amp;#34;Priority&amp;#34;: &amp;#34;3 normal&amp;#34;, &#xA;            &amp;#34;UntilTime&amp;#34;: 0, &#xA;            &amp;#34;EscalationUpdateTime&amp;#34;: &amp;#34;0&amp;#34;, &#xA;            &amp;#34;Queue&amp;#34;: &amp;#34;Raw&amp;#34;, &#xA;            &amp;#34;QueueID&amp;#34;: &amp;#34;2&amp;#34;, &#xA;            &amp;#34;State&amp;#34;: &amp;#34;new&amp;#34;, &#xA;            &amp;#34;Title&amp;#34;: &amp;#34;testtest&amp;#34;, &#xA;            &amp;#34;CreateBy&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;TicketID&amp;#34;: &amp;#34;3&amp;#34;, &#xA;            &amp;#34;StateType&amp;#34;: &amp;#34;new&amp;#34;, &#xA;            &amp;#34;UnlockTimeout&amp;#34;: &amp;#34;0&amp;#34;, &#xA;            &amp;#34;EscalationResponseTime&amp;#34;: &amp;#34;0&amp;#34;, &#xA;            &amp;#34;EscalationSolutionTime&amp;#34;: &amp;#34;0&amp;#34;, &#xA;            &amp;#34;LockID&amp;#34;: &amp;#34;1&amp;#34;, &#xA;            &amp;#34;ArchiveFlag&amp;#34;: &amp;#34;n&amp;#34;, &#xA;            &amp;#34;TicketNumber&amp;#34;: &amp;#34;2017110947000013&amp;#34;, &#xA;            &amp;#34;CreateTimeUnix&amp;#34;: &amp;#34;1510211290&amp;#34;, &#xA;            &amp;#34;Lock&amp;#34;: &amp;#34;unlock&amp;#34;, &#xA;            &amp;#34;SLAID&amp;#34;: &amp;#34;&amp;#34;, &#xA;            &amp;#34;CustomerUserID&amp;#34;: &amp;#34;it@mulinux.com&amp;#34;&#xA;        }&#xA;    ]&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;工单查询json参考&#34;&gt;&lt;span&gt;工单查询json参考&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%b7%a5%e5%8d%95%e6%9f%a5%e8%af%a2json%e5%8f%82%e8%80%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;{&#xA;    &amp;#34;Ticket&amp;#34;: {&#xA;        &amp;#34;Queues&amp;#34;: &amp;#34;Postmaster&amp;#34;&#xA;    }&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;搜索扩展信息json参考&#34;&gt;&lt;span&gt;搜索扩展信息json参考&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%90%9c%e7%b4%a2%e6%89%a9%e5%b1%95%e4%bf%a1%e6%81%afjson%e5%8f%82%e8%80%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;{&#xA;  &amp;#34;UserLogin&amp;#34;: &amp;#34;root@localhost&amp;#34;,&#xA;  &amp;#34;Password&amp;#34;: &amp;#34;123456&amp;#34;,&#xA;  &amp;#34;ConfigItem&amp;#34;: {&#xA;&#x9;&#x9;&amp;#34;Class&amp;#34;:&amp;#34;应用&amp;#34;,&#xA;&#x9;&#x9;&amp;#34;CIXMLData&amp;#34;:{&#xA;&#x9;&#x9;&#x9;&amp;#34;CODE&amp;#34;:&amp;#34;226&amp;#34;&#xA;&#x9;&#x9;}&#xA;&#x9;} &#x9;&#xA;}&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;操作工单api&#34;&gt;&lt;span&gt;操作工单API&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%93%8d%e4%bd%9c%e5%b7%a5%e5%8d%95api&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;获取工单详细信息&#34;&gt;&lt;span&gt;获取工单详细信息&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%8e%b7%e5%8f%96%e5%b7%a5%e5%8d%95%e8%af%a6%e7%bb%86%e4%bf%a1%e6%81%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/Ticket/3?UserLogin=root@localhost&amp;amp;Password=123456&amp;#34;&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;创建工单&#34;&gt;&lt;span&gt;创建工单&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%9b%e5%bb%ba%e5%b7%a5%e5%8d%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/Ticket?UserLogin=root@localhost&amp;amp;Password=123456&amp;#34; -H &amp;#34;Content-Type: application/json&amp;#34; -d &amp;#34;{\&amp;#34;Ticket\&amp;#34;:{\&amp;#34;Title\&amp;#34;:\&amp;#34;REST Create Test\&amp;#34;, \&amp;#34;Type\&amp;#34;: \&amp;#34;Unclassified\&amp;#34;, \&amp;#34;Queue\&amp;#34;:\&amp;#34;Raw\&amp;#34;,\&amp;#34;State\&amp;#34;:\&amp;#34;open\&amp;#34;,\&amp;#34;Priority\&amp;#34;:\&amp;#34;3 normal\&amp;#34;,\&amp;#34;CustomerUser\&amp;#34;:\&amp;#34;customer\&amp;#34;},\&amp;#34;Article\&amp;#34;:{\&amp;#34;Subject\&amp;#34;:\&amp;#34;Rest Create Test\&amp;#34;,\&amp;#34;Body\&amp;#34;:\&amp;#34;This is only a test\&amp;#34;,\&amp;#34;ContentType\&amp;#34;:\&amp;#34;text/plain; charset=utf8\&amp;#34;}}&amp;#34;  -X POST&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;更新工单&#34;&gt;&lt;span&gt;更新工单&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%9b%b4%e6%96%b0%e5%b7%a5%e5%8d%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/Ticket/3?UserLogin=root@localhost&amp;amp;Password=123456&amp;#34; -H &amp;#34;Content-Type: application/json&amp;#34; -d &amp;#34;{\&amp;#34;Ticket\&amp;#34;:{\&amp;#34;Queue\&amp;#34;:\&amp;#34;Postmaster\&amp;#34;}}&amp;#34;  -X PATCH&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;搜索工单&#34;&gt;&lt;span&gt;搜索工单&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%90%9c%e7%b4%a2%e5%b7%a5%e5%8d%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/Ticket?UserLogin=root@localhost&amp;amp;Password=123456&amp;amp;Queue=PostMaster&amp;#34;&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;操作cmdb-api&#34;&gt;&lt;span&gt;操作CMDB API&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%93%8d%e4%bd%9ccmdb-api&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;获取cmdb详细信息&#34;&gt;&lt;span&gt;获取CMDB详细信息&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%8e%b7%e5%8f%96cmdb%e8%af%a6%e7%bb%86%e4%bf%a1%e6%81%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/ConfigItem/1?UserLogin=root@localhost&amp;amp;Password=123456&amp;#34;&#xA;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/ConfigItem/1&amp;#34; -H &amp;#34;Content-Type: application/json&amp;#34; -d &amp;#34;{\&amp;#34;UserLogin\&amp;#34;:\&amp;#34;root@localhost\&amp;#34;,\&amp;#34;Password\&amp;#34;:\&amp;#34;123456\&amp;#34;}&amp;#34; -X GET&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;创建cmdb&#34;&gt;&lt;span&gt;创建CMDB&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%9b%e5%bb%bacmdb&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/ConfigItem&amp;#34; -H &amp;#34;Content-Type: application/json&amp;#34; -d &amp;#34;{\&amp;#34;UserLogin\&amp;#34;:\&amp;#34;root@localhost\&amp;#34;,\&amp;#34;Password\&amp;#34;:\&amp;#34;123456\&amp;#34;,\&amp;#34;ConfigItem\&amp;#34;:{\&amp;#34;Class\&amp;#34;:\&amp;#34;Computer\&amp;#34;,\&amp;#34;DeplState\&amp;#34;:\&amp;#34;Production\&amp;#34;,\&amp;#34;InciState\&amp;#34;:\&amp;#34;Operational\&amp;#34;,\&amp;#34;Name\&amp;#34;:\&amp;#34;SH-TG-C4-FB13\&amp;#34;,\&amp;#34;CIXMLData\&amp;#34;:{\&amp;#34;SerialNumber\&amp;#34;:\&amp;#34;6CU513VRKQ\&amp;#34;,\&amp;#34;Ram\&amp;#34;:\&amp;#34;16G\&amp;#34;,\&amp;#34;Model\&amp;#34;:\&amp;#34;ProLiant DL380 Gen9\&amp;#34;,\&amp;#34;NIC\&amp;#34;:{\&amp;#34;NIC\&amp;#34;:\&amp;#34;192.168.1.1\&amp;#34;,\&amp;#34;IPoverDHCP\&amp;#34;:\&amp;#34;No\&amp;#34;}}}}&amp;#34;  -X POST&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;更新cmdb&#34;&gt;&lt;span&gt;更新CMDB&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%9b%b4%e6%96%b0cmdb&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/ConfigItem/1&amp;#34; -H &amp;#34;Content-Type: application/json&amp;#34; -d &amp;#34;{\&amp;#34;UserLogin\&amp;#34;:\&amp;#34;root@localhost\&amp;#34;,\&amp;#34;Password\&amp;#34;:\&amp;#34;123456\&amp;#34;,\&amp;#34;ConfigItem\&amp;#34;:{\&amp;#34;Class\&amp;#34;:\&amp;#34;Computer\&amp;#34;,\&amp;#34;DeplState\&amp;#34;:\&amp;#34;Production\&amp;#34;,\&amp;#34;InciState\&amp;#34;:\&amp;#34;Operational\&amp;#34;,\&amp;#34;Name\&amp;#34;:\&amp;#34;SH-TG-C4-FB18\&amp;#34;}}&amp;#34;  -X PATCH&lt;/code&gt;&lt;/pre&gt;&lt;h4 class=&#34;heading-element&#34; id=&#34;搜索cmdb&#34;&gt;&lt;span&gt;搜索CMDB&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%90%9c%e7%b4%a2cmdb&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h4&gt;&lt;pre&gt;&lt;code&gt;curl &amp;#34;http://localhost/otrs/nph-genericinterface.pl/Webservice/GenericTicketConnectorREST/ConfigItem&amp;#34; -H &amp;#34;Content-Type: application/json&amp;#34; -d &amp;#34;{\&amp;#34;UserLogin\&amp;#34;:\&amp;#34;root@localhost\&amp;#34;,\&amp;#34;Password\&amp;#34;:\&amp;#34;123456\&amp;#34;,\&amp;#34;ConfigItem\&amp;#34;:{\&amp;#34;Class\&amp;#34;:\&amp;#34;Computer\&amp;#34;}}&amp;#34; -X GET&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Grafana 插件</title>
      <link>https://blog.mulinux.com/en/grafana-plugins/</link>
      <pubDate>Fri, 18 May 2018 14:17:39 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/grafana-plugins/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;推荐插件&#34;&gt;&lt;span&gt;推荐插件&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%8e%a8%e8%8d%90%e6%8f%92%e4%bb%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;饼图：Pie Chart&lt;/li&gt;&#xA;&lt;li&gt;influxdb管理：Influx Admin&lt;/li&gt;&#xA;&lt;li&gt;流程图：FlowCharting&lt;/li&gt;&#xA;&lt;li&gt;世界地图：Worldmap Pannel&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>Hexo&#43;Coding Ide&#43;Next6搭建blog</title>
      <link>https://blog.mulinux.com/en/hexo-coding-next6/</link>
      <pubDate>Thu, 03 May 2018 10:41:42 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/hexo-coding-next6/</guid>
      <category domain="https://blog.mulinux.com/en/categories/development/">Development</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;windows安装hexo&#34;&gt;&lt;span&gt;windows安装hexo&lt;/span&gt;&#xA;  &lt;a href=&#34;#windows%e5%ae%89%e8%a3%85hexo&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;git config --global core.autocrlf false&#xA;ssh -T git@git.coding.net `输入yes`&#xA;mkdir hexoblog&#xA;cd hexoblog/&#xA;npm install hexo -g&#xA;hexo -v&#xA;hexo init&#xA;vi _config.yml&#xA;cat /c/Users/80283/.ssh/id_rsa.pub&#xA;hexo clean &amp;amp;&amp;amp; hexo generate &amp;amp;&amp;amp; hexo deployer&#xA;hexo server&#xA;npm install hexo-server&#xA;npm install hexo-deployer-git --save&#xA;hexo clean&#xA;hexo generate&#xA;hexo deploy&#xA;vi _config.yml&#xA;npm install hexo-deployer-git --save&#xA;hexo clean &amp;amp;&amp;amp; hexo g &amp;amp;&amp;amp; hexo d&#xA;hexo clean &amp;amp;&amp;amp; hexo g &amp;amp;&amp;amp; hexo deploy&#xA;vi _config.yml&#xA;hexo deploy&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;添加模板&#34;&gt;&lt;span&gt;添加模板&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b7%bb%e5%8a%a0%e6%a8%a1%e6%9d%bf&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;mkdir themes/next&#xA;ls themes/next/&#xA;git clone https://github.com/iissnan/hexo-theme-next es/next&#xA;hexo new page &amp;#34;tags&amp;#34;&#xA;hexo new page &amp;#34;categories&amp;#34;&#xA;hexo g &amp;amp;&amp;amp; hexo d&#xA;hexo clean &amp;amp;&amp;amp; hexo g &amp;amp;&amp;amp; hexo d&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;多台电脑同步hexo&#34;&gt;&lt;span&gt;多台电脑同步hexo&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%a4%9a%e5%8f%b0%e7%94%b5%e8%84%91%e5%90%8c%e6%ad%a5hexo&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;将本地hexo同步到远程uname hexo分支&lt;/p&gt;</description>
    </item>
    <item>
      <title>telegraf监控ceph需要使用root启动服务</title>
      <link>https://blog.mulinux.com/en/telegraf-ceph-monitor/</link>
      <pubDate>Sat, 14 Apr 2018 09:25:18 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/telegraf-ceph-monitor/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;需root启动telegraf&#34;&gt;&lt;span&gt;需root启动telegraf&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%9c%80root%e5%90%af%e5%8a%a8telegraf&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vi /usr/lib/systemd/system/telegraf.service&#x9;将user=telegraf改为user=root&#xA;systemctl daemon-reload&#xA;systemctl resstart telegraf&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>grafana5 dashboard备份与恢复</title>
      <link>https://blog.mulinux.com/en/grafana-dashboard-backup/</link>
      <pubDate>Mon, 12 Mar 2018 13:48:46 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/grafana-dashboard-backup/</guid>
      <category domain="https://blog.mulinux.com/en/categories/monitor/">Monitor</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;参考资料&#34;&gt;&lt;span&gt;参考资料&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8f%82%e8%80%83%e8%b5%84%e6%96%99&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;https://blog.dictvm.org/export-all-grafana-graphs/&#xA;https://github.com/m110/grafcli#usage&#xA;https://gist.github.com/jaimegago/11229750&#xA;https://utkarshcmu.github.io/wizzy-site/home/&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装grafcli&#34;&gt;&lt;span&gt;安装grafcli&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85grafcli&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;pip3 install grafcli&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>阅读-关键20小时快速学会任何技能</title>
      <link>https://blog.mulinux.com/en/%E5%85%B3%E9%94%AE20%E5%B0%8F%E6%97%B6%E5%BF%AB%E9%80%9F%E5%AD%A6%E4%BC%9A%E4%BB%BB%E4%BD%95%E6%8A%80%E8%83%BD/</link>
      <pubDate>Fri, 09 Mar 2018 08:59:22 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E5%85%B3%E9%94%AE20%E5%B0%8F%E6%97%B6%E5%BF%AB%E9%80%9F%E5%AD%A6%E4%BC%9A%E4%BB%BB%E4%BD%95%E6%8A%80%E8%83%BD/</guid>
      <category domain="https://blog.mulinux.com/en/categories/%E9%98%85%E8%AF%BB/">阅读</category>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;《关键20小时快速学会任何技能》&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h1 class=&#34;heading-element&#34; id=&#34;读书笔记&#34;&gt;&lt;span&gt;读书笔记&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%af%bb%e4%b9%a6%e7%ac%94%e8%ae%b0&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;快速习得技能&#34;&gt;&lt;span&gt;快速习得技能&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%bf%ab%e9%80%9f%e4%b9%a0%e5%be%97%e6%8a%80%e8%83%bd&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;学习备忘录&lt;/li&gt;&#xA;&lt;li&gt;选择方向&lt;/li&gt;&#xA;&lt;li&gt;集中精力&lt;/li&gt;&#xA;&lt;li&gt;制定目标&lt;/li&gt;&#xA;&lt;li&gt;分解技能&lt;/li&gt;&#xA;&lt;li&gt;获得工具&lt;/li&gt;&#xA;&lt;li&gt;扫除障碍&lt;/li&gt;&#xA;&lt;li&gt;腾出时间&lt;/li&gt;&#xA;&lt;li&gt;及时反馈&lt;/li&gt;&#xA;&lt;li&gt;计时训练&lt;/li&gt;&#xA;&lt;li&gt;数量速度&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;尝试在heroku上开始ruby&lt;/p&gt;</description>
    </item>
    <item>
      <title>远程执行windows上的计划任务</title>
      <link>https://blog.mulinux.com/en/remote-exec-schtasks/</link>
      <pubDate>Thu, 08 Feb 2018 14:02:04 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/remote-exec-schtasks/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;结束计划任务&#34;&gt;&lt;span&gt;结束计划任务&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bb%93%e6%9d%9f%e8%ae%a1%e5%88%92%e4%bb%bb%e5%8a%a1&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;schtasks /end /tn &amp;quot;计划任务的名字&amp;quot; /s &amp;quot;机器名或IP&amp;quot; /u &amp;quot;用户名&amp;quot; /p &amp;quot;密码&amp;quot; &lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>ESXi ssacli安装及使用</title>
      <link>https://blog.mulinux.com/en/esxi-ssacli/</link>
      <pubDate>Fri, 05 Jan 2018 13:42:21 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/esxi-ssacli/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装包vib&#34;&gt;&lt;span&gt;安装包（vib）&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85%e5%8c%85vib&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;a href=&#34;https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX_499c1fbb1d1043f5bbedb98a41#tab2&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;https://support.hpe.com/hpsc/swd/public/detail?swItemId=MTX_499c1fbb1d1043f5bbedb98a41#tab2&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>阅读-我的情绪为何总被他人左右</title>
      <link>https://blog.mulinux.com/en/%E6%88%91%E7%9A%84%E6%83%85%E7%BB%AA%E4%B8%BA%E4%BD%95%E6%80%BB%E8%A2%AB%E4%BB%96%E4%BA%BA%E5%B7%A6%E5%8F%B3/</link>
      <pubDate>Thu, 28 Dec 2017 09:12:26 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E6%88%91%E7%9A%84%E6%83%85%E7%BB%AA%E4%B8%BA%E4%BD%95%E6%80%BB%E8%A2%AB%E4%BB%96%E4%BA%BA%E5%B7%A6%E5%8F%B3/</guid>
      <category domain="https://blog.mulinux.com/en/categories/%E9%98%85%E8%AF%BB/">阅读</category>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;《我的情绪为何总被他人左右》&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;读书笔记&#34;&gt;&lt;span&gt;读书笔记&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%af%bb%e4%b9%a6%e7%ac%94%e8%ae%b0&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;ABC‘S&#xA;&#xA;A&amp;#39;S--&amp;gt;B&amp;#39;S--&amp;gt;C&amp;#39;S&#xA;事件诱因--&amp;gt;对诱因事件的信条--&amp;gt;感受和行为&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;我们常常自然而然地对挫败我们的人或事反应过度——而我们考量它们的方式则是雪上加霜。&lt;/p&gt;</description>
    </item>
    <item>
      <title>OpenVZ虚机Centos6.5安装gitlab报错</title>
      <link>https://blog.mulinux.com/en/openvz-gitlab/</link>
      <pubDate>Sat, 23 Dec 2017 18:05:39 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/openvz-gitlab/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;执行gitlab-ctl-reconfigure后报错&#34;&gt;&lt;span&gt;执行gitlab-ctl reconfigure后报错：&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%89%a7%e8%a1%8cgitlab-ctl-reconfigure%e5%90%8e%e6%8a%a5%e9%94%99&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[execute] cat: error: permission denied on key &amp;#39;net.bridge.bridge-nf-call-ip6tables&amp;#39;&#xA;              error: permission denied on key &amp;#39;net.bridge.bridge-nf-call-iptables&amp;#39;&#xA;              error: permission denied on key &amp;#39;net.bridge.bridge-nf-call-arptables&amp;#39;&#xA;              /etc/sysctl.d/*.conf: No such file or directory&#xA;              net.ipv4.ip_forward = 0&#xA;              net.ipv4.tcp_syncookies = 1&#xA;    &#xA;    ================================================================================&#xA;    Error executing action `run` on resource &amp;#39;execute[load sysctl conf]&amp;#39;&#xA;    ================================================================================&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;解决方法&#34;&gt;&lt;span&gt;解决方法&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%a7%a3%e5%86%b3%e6%96%b9%e6%b3%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;rm -f /sbin/modprobe  &#xA;ln -s /bin/true /sbin/modprobe&#xA;&#xA;rm -f /sbin/sysctl  &#xA;ln -s /bin/true /sbin/sysctl &#xA;/sbin/sysctl -p    #不用执行&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>linux下screen使用</title>
      <link>https://blog.mulinux.com/en/use-linux-screen/</link>
      <pubDate>Mon, 28 Aug 2017 14:34:47 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-linux-screen/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装&#34;&gt;&lt;span&gt;安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;yum install -y screen&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>typecho更换域名</title>
      <link>https://blog.mulinux.com/en/typecho-update-domain/</link>
      <pubDate>Wed, 16 Aug 2017 17:52:46 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/typecho-update-domain/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;改成使用二级域名blogmulinuxcom&#34;&gt;&lt;span&gt;改成使用二级域名blog.mulinux.com&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%94%b9%e6%88%90%e4%bd%bf%e7%94%a8%e4%ba%8c%e7%ba%a7%e5%9f%9f%e5%90%8dblogmulinuxcom&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;UPDATE `qdm123767534_db`.`typecho_options` SET `value` = &amp;#39;http://blog.mulinux.com&amp;#39; WHERE `typecho_options`.`name` = &amp;#39;siteUrl&amp;#39; AND `typecho_options`.`user` =0;&#xA;UPDATE `typecho_contents` SET text = REPLACE(text, &amp;#39;http://www.mulinux.com&amp;#39;, &amp;#39;http://blog.mulinux.com&amp;#39;) WHERE INSTR(text,&amp;#39;http://www.mulinux.com&amp;#39;) &amp;gt; 0;&#xA;UPDATE `typecho_contents` SET text = REPLACE(text, &amp;#39;www.mulinux.com&amp;#39;, &amp;#39;blog.mulinux.com&amp;#39;) WHERE INSTR(text,&amp;#39;www.mulinux.com&amp;#39;) &amp;gt; 0;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>iptables</title>
      <link>https://blog.mulinux.com/en/use-iptables/</link>
      <pubDate>Sun, 16 Jul 2017 15:29:11 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-iptables/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;通过nat表映射实现共享上网&#34;&gt;&lt;span&gt;通过nat表映射实现共享上网&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%80%9a%e8%bf%87nat%e8%a1%a8%e6%98%a0%e5%b0%84%e5%ae%9e%e7%8e%b0%e5%85%b1%e4%ba%ab%e4%b8%8a%e7%bd%91&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;开启共享上网&#34;&gt;&lt;span&gt;开启共享上网&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%bc%80%e5%90%af%e5%85%b1%e4%ba%ab%e4%b8%8a%e7%bd%91&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;（1）把 /etc/sysctl.conf  中的net.ipv4.ip_forward = 1  ，改成等于1&#xA;（2）执行&#xA;&lt;code&gt;iptables -t nat -A POSTROUTING -s 192.168.1.0/24 -o eth0 -j MASQUERADE&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Esxcli常用命令</title>
      <link>https://blog.mulinux.com/en/use-esxcli/</link>
      <pubDate>Fri, 16 Jun 2017 17:35:24 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-esxcli/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;常用命令&#34;&gt;&lt;span&gt;常用命令&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%b8%b8%e7%94%a8%e5%91%bd%e4%bb%a4&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;esxcli network nic list 查看网卡信息&#xA;esxcli network ip route ipv4 list 查看路由(ipv4)&#xA;esxcli network ip dns server list 查看 dns&#xA;esxcli network ip interface ipv4 get 查看ip配置(ipv4)&#xA;esxcfg-route 查看默认路由&#xA;esxcfg-nics 等价 esxcli network nic list&#xA;esxcli vm process list # 只显示开机的虚拟机列表&#xA;vim-cmd vmsvc/power.getstate &amp;lt;vmid&amp;gt; #获取电源状态&#xA;vim-cmd vmsvc/getallvms | grep &amp;lt;vmip&amp;gt; #查找ip对应的vps&#xA;vim-cmd vmsvc/power.on &amp;lt;vmid&amp;gt; #启动该id的vps power.on power.off power.reset&#xA;esxcli system time set --hour 23 --min 32 --sec 30 #设置esxi系统的时间&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;参考：http://blog.csdn.net/xiaoxinyu316/article/details/45172771&lt;/p&gt;</description>
    </item>
    <item>
      <title>ELK5部署文档</title>
      <link>https://blog.mulinux.com/en/elk5-install/</link>
      <pubDate>Thu, 15 Jun 2017 15:07:49 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/elk5-install/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;elasticsearch&#34;&gt;&lt;span&gt;elasticsearch&lt;/span&gt;&#xA;  &lt;a href=&#34;#elasticsearch&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;elasticsearch-5.5.1-1.noarch&lt;/p&gt;</description>
    </item>
    <item>
      <title>Centos使用parted大容量超2T硬盘分区</title>
      <link>https://blog.mulinux.com/en/centos%E4%BD%BF%E7%94%A8parted%E5%A4%A7%E5%AE%B9%E9%87%8F%E8%B6%852t%E7%A1%AC%E7%9B%98%E5%88%86%E5%8C%BA/</link>
      <pubDate>Wed, 17 May 2017 13:21:00 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos%E4%BD%BF%E7%94%A8parted%E5%A4%A7%E5%AE%B9%E9%87%8F%E8%B6%852t%E7%A1%AC%E7%9B%98%E5%88%86%E5%8C%BA/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;由于MBR分区有大小限制2.1T，所以采用了GPT分区格式。&lt;/p&gt;&#xA;&lt;p&gt;在安装CENTOS时，在常规情况下超过2T的空间将不能被划分。在使用超过2T的硬盘时，我们需要将MBR分区改为GPT分区。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Centos7安装jupyter并配置多个Python版本</title>
      <link>https://blog.mulinux.com/en/centos7%E5%AE%89%E8%A3%85jupyter%E5%B9%B6%E9%85%8D%E7%BD%AE%E5%A4%9A%E4%B8%AApython%E7%89%88%E6%9C%AC/</link>
      <pubDate>Mon, 17 Apr 2017 11:43:24 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos7%E5%AE%89%E8%A3%85jupyter%E5%B9%B6%E9%85%8D%E7%BD%AE%E5%A4%9A%E4%B8%AApython%E7%89%88%E6%9C%AC/</guid>
      <category domain="https://blog.mulinux.com/en/categories/python/">Python</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装python&#34;&gt;&lt;span&gt;安装python&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85python&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;useradd mds&#xA;passwd mds&#xA;vi /etc/ssh/sshd_config &#xA;systemctl sshd restart&#xA;systemctl restart sshd&#xA;vi /etc/ssh/sshd_config &#xA;systemctl restart sshd&#xA;passwd root&#xA;systemctl status firewalld&#xA;systemctl disable firewalld&#xA;vi /etc/selinux/config &#xA;yum install epel-release&#xA;yum install python-pip python-devel vim openssl-devel readline-devel&#xA;pip install jupyter&#xA;pip install --upgrade pip&#xA;pip install -y setuptools&#xA;pip install setuptools&#xA;wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz&#xA;rm -f Python-3.6.1.tgz &#xA;cd /usr/local/src/&#xA;mv /home/mds/Python-3.6.1.tgz .&#xA;tar xf Python-3.6.1.tgz &#xA;cd Python-3.6.1&#xA;./configure --prefix=/usr/local/python-3.6.1&#xA;echo $?&#xA;make &amp;amp;&amp;amp; make install&#xA;ln -sf /usr/local/python-3.6.1/bin/python3 /usr/bin/python3&#xA;ln -sf /usr/local/python-3.6.1/bin/pip3 /usr/bin/pip3 &#xA;mkdir /var/notebook&#xA;su mds&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;jupyter-配置&#34;&gt;&lt;span&gt;jupyter 配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#jupyter-%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;jupyter notebook --generate-config&#xA;openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout notebook_cert.key -out notebook_cert.pem&#xA;python -c &amp;#34;import IPython;print(IPython.lib.passwd())&amp;#34;&#xA;vim .jupyter/jupyter_notebook_config.py&#xA;mkdir /var/notebook&#xA;su -&#xA;jupyter-kernelspec list&#xA;pip3 install ipykernel&#xA;python3 -m ipykernel install --name python3 --display-name &amp;#34;Python3.6.1&amp;#34;&#xA;jupyter notebook&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;配置jupyter_notebook_configpy&#34;&gt;&lt;span&gt;配置jupyter_notebook_config.py&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%85%8d%e7%bd%aejupyter_notebook_configpy&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;c.NotebookApp.ip = &amp;#39;0.0.0.0&amp;#39;&#xA;c.NotebookApp.notebook_dir = u&amp;#39;/var/notebook&amp;#39;&#xA;c = get_config()&#xA;c.NotebookApp.certfile = u&amp;#39;/root/.jupyter/notebook_cert.pem&amp;#39;&#xA;c.NotebookApp.keyfile = u&amp;#39;/root/.jupyter/notebook_cert.key&amp;#39;&#xA;c.NotebookApp.password = u&amp;#39;sha1:510190c22a9d:c0586d6c41af93a939bd23f3d4cb06de6ec8df9f&amp;#39;&#xA;c.NotebookApp.ip = &amp;#39;*&amp;#39;&#xA;c.NotebookApp.port = 8080&#xA;c.NotebookApp.open_browser = False&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;启动jupyter&#34;&gt;&lt;span&gt;启动jupyter&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%90%af%e5%8a%a8jupyter&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;jupyter-notebook --ip=0.0.0.0 --allow-root&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>rsync server/client配置</title>
      <link>https://blog.mulinux.com/en/rsync-server-client/</link>
      <pubDate>Sun, 05 Mar 2017 23:00:08 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/rsync-server-client/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;服务端&#34;&gt;&lt;span&gt;服务端&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%9c%8d%e5%8a%a1%e7%ab%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;mkdir /etc/rsyncd&#xA;&#xA;vi /etc/rsyncd/rsyncd.conf&#xA;&#xA;uid = root&#xA;gid = root&#xA;hosts allow = *&#xA;use chroot = yes&#xA;max connections = 10&#xA;pid file = /var/run/rsyncd.pid&#xA;lock file = /var/run/rsync.lock&#xA;logf ile = /var/log/rsyncd.log&#xA;timeout = 600&#xA;port = 873&#xA;&#xA;[sh1]&#xA;path = /data1&#xA;read only = yes&#xA;comment = Rsync File&#xA;write only = no&#xA;list = no&#xA;auth users = rsync&#xA;secrets file = /etc/.rsyncd.secrets&#xA;&#xA;[sz1]&#xA;path = /data2&#xA;read only = yes&#xA;comment = Rsync File&#xA;write only = no&#xA;list = no&#xA;auth users = rsync&#xA;secrets file = /etc/.rsyncd.secrets&#xA;　　&#xA;&#xA;vi /etc/.rsyncd.secrets&#xA;&#xA;rsync:passwd&#xA;　　&#xA;&#xA;cat /etc/xinetd.d/rsync&#xA;&#xA;# default: off&#xA;# description: The rsync server is a good addition to an ftp server, as it \&#xA;#&#x9;allows crc checksumming etc.&#xA;service rsync&#xA;{&#xA; disable&#x9;= no&#xA; flags&#x9;= IPv6&#xA; socket_type = stream&#xA; wait = no&#xA; user = root&#xA; #server = /usr/local/bin/rsync&#xA; server = /usr/bin/rsync&#xA; server_args = --daemon --config=/etc/rsyncd/rsyncd.conf&#xA; log_on_failure &amp;#43;= USERID&#xA;}&#xA;　&#xA;&#xA;/etc/init.d/xinetd restart&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;客户端&#34;&gt;&lt;span&gt;客户端&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%a2%e6%88%b7%e7%ab%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;密码&#34;&gt;&lt;span&gt;密码&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%af%86%e7%a0%81&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;pre&gt;&lt;code&gt;cat /etc/.rsyncd.secrets&#xA;passwd&lt;/code&gt;&lt;/pre&gt;&lt;h3 class=&#34;heading-element&#34; id=&#34;上传&#34;&gt;&lt;span&gt;上传&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%8a%e4%bc%a0&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h3&gt;&lt;p&gt;&lt;code&gt;rsync -vzrtopg --delete --progress test.sh rsync@192.168.2.221::sh1 --password-file=/etc/.rsyncd.secrets&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Centos7.1&#43;openstack liberty部署</title>
      <link>https://blog.mulinux.com/en/centos7-openstack-liberty/</link>
      <pubDate>Mon, 20 Feb 2017 18:10:20 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos7-openstack-liberty/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;环境准备&#34;&gt;&lt;span&gt;环境准备&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%8e%af%e5%a2%83%e5%87%86%e5%a4%87&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;准备两台虚拟机：网卡两块，网卡1host-only（192.168.33.11/12），网卡2nat（dhcp），2G内存，1内核，20G&lt;/p&gt;</description>
    </item>
    <item>
      <title>Java Web Keytool Ssl</title>
      <link>https://blog.mulinux.com/en/java-web-keytool-ssl/</link>
      <pubDate>Thu, 16 Feb 2017 14:04:36 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/java-web-keytool-ssl/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;keytool导入移除证书&#34;&gt;&lt;span&gt;keytool导入/移除证书&lt;/span&gt;&#xA;  &lt;a href=&#34;#keytool%e5%af%bc%e5%85%a5%e7%a7%bb%e9%99%a4%e8%af%81%e4%b9%a6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;导入：keytool -import -keystore &amp;#34;C:\Program Files (x86)\Java\jre6\lib\security\cacerts&amp;#34;  -storepass changeit -keypass changeit -alias emailcert -file test.cer&#xA;移除：keytool -delete -alias emailcert -keystore &amp;#34;C:\Program Files (x86)\Java\jre6\lib\security\cacerts&amp;#34; -storepass changeit&#xA;&#xA;keytool -import -alias cacerts -keystore cacerts -file /etc/pki/tls/certs/sha256.cer -trustcacerts&#xA;keytool -import -alias otrskey -file otrs/server.crt&#xA;&#xA;keytool -import -alias otrscert -keystore cacerts -file /etc/pki/tls/certs/server.crt -trustcacerts&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Linux Python2.6 Upgrade Python2</title>
      <link>https://blog.mulinux.com/en/linux-python2.6-upgrade-python2.7/</link>
      <pubDate>Thu, 26 Jan 2017 22:47:30 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-python2.6-upgrade-python2.7/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;下载并编译&#34;&gt;&lt;span&gt;下载并编译&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%b8%8b%e8%bd%bd%e5%b9%b6%e7%bc%96%e8%af%91&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;python-V&#xA;wget http://python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2&#xA;rm-rfPython-2.7.3.tar.bz2 &#xA;tar jxfPython-2.7.3.tar.bz2 &#xA;cdPython-2.7.3&#xA;./configure &#xA;make all&#xA;make install&#xA;make clean&#xA;make distclean&#xA;/usr/local/bin/python2.7-V&#xA;mv/usr/bin/python/usr/bin/python2.6.6&#xA;ln-s/usr/local/bin/python2.7/usr/bin/python&#xA;python-V&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Expect批量添加ssh免密登录</title>
      <link>https://blog.mulinux.com/en/linux-expect-deploy-sshkey/</link>
      <pubDate>Sun, 25 Dec 2016 23:04:52 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-expect-deploy-sshkey/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;编写脚本deploy_ssh_keyexp&#34;&gt;&lt;span&gt;编写脚本deploy_ssh_key.exp&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bc%96%e5%86%99%e8%84%9a%e6%9c%acdeploy_ssh_keyexp&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;#!/usr/bin/expect -f&#xA;&#xA;set timeout 2&#xA;set ipaddress [lindex $argv 0]&#xA;set passwd &amp;#34;password&amp;#34;&#xA;&#xA;spawn ssh-copy-id &amp;#34;-p2522 mds@$ipaddress&amp;#34;&#xA;&#xA;expect {&#xA;&amp;#34;yes/no&amp;#34; { send &amp;#34;yes\r&amp;#34;;exp_continue }&#xA;&amp;#34;password:&amp;#34; { send &amp;#34;$passwd\r&amp;#34; }&#xA;}&#xA;expect &amp;#34;#&amp;#34;&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;批量执行&#34;&gt;&lt;span&gt;批量执行&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%89%b9%e9%87%8f%e6%89%a7%e8%a1%8c&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;for x in &lt;/code&gt;cat ip.txt | awk &amp;lsquo;{print $1}&amp;rsquo;&lt;code&gt;;do ./deploy_ssh_key.exp $x;done&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>使用Mock制作Rpm包</title>
      <link>https://blog.mulinux.com/en/linux-mock-rpm/</link>
      <pubDate>Sun, 11 Dec 2016 13:53:54 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-mock-rpm/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装mock&#34;&gt;&lt;span&gt;安装mock&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85mock&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;yum install -y mock&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>OTRS-5安装配置</title>
      <link>https://blog.mulinux.com/en/otrs5-install/</link>
      <pubDate>Thu, 24 Nov 2016 22:51:34 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/otrs5-install/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;准备工作&#34;&gt;&lt;span&gt;准备工作&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%87%86%e5%a4%87%e5%b7%a5%e4%bd%9c&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;官方地址： &lt;a href=&#34;https://www.otrs.com&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;www.otrs.com&lt;/a&gt;&#xA;社区：http://ask.otrs.org.cn/；http://www.otrs-china.cn/forum.php&lt;/p&gt;</description>
    </item>
    <item>
      <title>Linux mount 挂载</title>
      <link>https://blog.mulinux.com/en/linux-mount-nfs-fstab/</link>
      <pubDate>Thu, 27 Oct 2016 10:27:46 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-mount-nfs-fstab/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;挂载新磁盘&#34;&gt;&lt;span&gt;挂载新磁盘&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%8c%82%e8%bd%bd%e6%96%b0%e7%a3%81%e7%9b%98&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;fdisk /dev/hdb   &#xA;n(增加新分区)-p（建立扩展分区）-1(建立1个扩展分区)-回车-回车-p（检查分区是不是已经建立）-w（保存）&#xA;mkfs.ext3 /dev/hdb1　格式化hdb1 &#xA;mkdir /www 建立WWW目录&#xA;vi /etc/fstab　更改分区表n&#xA;增加/dev/hdb1 /www ext3 defaults 1 1&#xA;mount -a 重新装载所有的点&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;linux挂载存储&#34;&gt;&lt;span&gt;Linux挂载存储&lt;/span&gt;&#xA;  &lt;a href=&#34;#linux%e6%8c%82%e8%bd%bd%e5%ad%98%e5%82%a8&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;mount -t nfs ip:/test /test&#xA;/bin/mount -t cifs -o username=user,password=&amp;#34;password&amp;#34;,nounix,noserverino  //192.168.1.188/test /mulinux/test&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;windows-挂载nfs&#34;&gt;&lt;span&gt;windows 挂载nfs&lt;/span&gt;&#xA;  &lt;a href=&#34;#windows-%e6%8c%82%e8%bd%bdnfs&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;/mnt/work/ 目录权限为777或者属主为nfs用户&#xA;cat /etc/exports&#xA;/mnt/work/ 192.168.8.199/32(ro,sync)&#xA;&#xA;net use /persistent:yes&#xA;mount 192.168.1.5:/mulinux/History X:&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;fstab-保存失败&#34;&gt;&lt;span&gt;fstab 保存失败&lt;/span&gt;&#xA;  &lt;a href=&#34;#fstab-%e4%bf%9d%e5%ad%98%e5%a4%b1%e8%b4%a5&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;mount /dev/sdc1 /www&#xA;mount -o remout,rw /      mount -o remount,rw /www&#xA;mount -a&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;卸载&#34;&gt;&lt;span&gt;卸载&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8d%b8%e8%bd%bd&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;umount -l 强制卸载&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Vsftp 部署及使用</title>
      <link>https://blog.mulinux.com/en/use-vsftp/</link>
      <pubDate>Sun, 16 Oct 2016 14:11:42 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-vsftp/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;安装vsftp-db4-utils&#34;&gt;&lt;span&gt;安装vsftp db4-utils&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85vsftp-db4-utils&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;yum install -y vsftpd db4-utils    #生成口令库需要db4&#xA;/etc/init.d/vsftpd restart&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;配置vsftp&#34;&gt;&lt;span&gt;配置vsftp&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%85%8d%e7%bd%aevsftp&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;vsftp默认情况下可以用系统用户登录&#34;&gt;&lt;span&gt;vsftp默认情况下可以用系统用户登录&lt;/span&gt;&#xA;  &lt;a href=&#34;#vsftp%e9%bb%98%e8%ae%a4%e6%83%85%e5%86%b5%e4%b8%8b%e5%8f%af%e4%bb%a5%e7%94%a8%e7%b3%bb%e7%bb%9f%e7%94%a8%e6%88%b7%e7%99%bb%e5%bd%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vi /etc/vsftpd/vsftpd.conf&#xA;chroot_local_user=YES  取消注释&#xA;&#xA;useradd virftp -s /sbin/nologin      #建立虚拟账号相关联的系统账号&#xA;&#xA;vi  /etc/vsftpd/vsftpd_user    #建立虚拟账户相关的文件，在里面填写用户名和账号，第一行账号，第二行密码，依次类推&#xA;&#xA;    test1&#xA;    123456&#xA;    test2&#xA;    abcdef&#xA;&#xA;chmod 600 /etc/vsftpd/vsftpd_user&#xA;&#xA;db_load -T -t hash -f /etc/vsftpd/vsftpd_user /etc/vsftpd/vsftpd_user.db    # 建立访问者的口令库文件&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;建立虚拟账号及目录&#34;&gt;&lt;span&gt;建立虚拟账号及目录&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%bb%ba%e7%ab%8b%e8%99%9a%e6%8b%9f%e8%b4%a6%e5%8f%b7%e5%8f%8a%e7%9b%ae%e5%bd%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;mkdir  /etc/vsftpd/vsftpd_user_conf    #建立虚拟账号相关的目录&#xA;cd   /etc/vsftpd/vsftpd_user_conf    &#xA;vi test1    #创建和用户对应的配置文件&#xA;local_root=/home/virftp/test1&#xA;anonymous_enable=NO&#xA;write_enable=YES&#xA;local_umask=022&#xA;anon_upload_enable=NO&#xA;anon_mkdir_write_enable=NO&#xA;idle_session_timeout=600&#xA;data_connection_timeout=120&#xA;max_clients=10&#xA;max_per_ip=5&#xA;local_max_rate=50000&#xA;&#xA;mkdir /home/virftp/test1    #创建FTP用户test1访问的目录&#xA;chown -R virftp:virftp /home/virftp&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;进入etcpamd编辑配置&#34;&gt;&lt;span&gt;进入/etc/pam.d/编辑配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%bf%9b%e5%85%a5etcpamd%e7%bc%96%e8%be%91%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vi /etc/pam.d/vsftpd    #在最开头添加两行&#xA;auth sufficient /lib/security/pam_userdb.so db=/etc/vsftpd/vsftpd_user   &#xA;#如果是64位系统，则改为/lib64/security/pam_userdb.so &#xA;account sufficient /lib/security/pam_userdb.so db=/etc/vsftpd/vsftpd_user   &#xA;#如果是64位系统，则改为/lib64/security/pam_userdb.so&#xA;&#xA;vi /etc/vsftpd/vsftpd.conf&#xA;anonymous_enable=YES改为anonymous_enable=NO&#xA;#anon_upload_enable=YES 改为 anon_upload_enable=NO&#xA;#anon_mkdir_write_enable=YES 改为 anon_mkdir_write_enable=NO&#xA;&#xA;再添加如下内容&#xA;chroot_local_user=YES&#xA;guest_enable=YES    #启用虚拟用户&#xA;guest_username=virftp    #虚拟用户映射到的系统账号&#xA;virtual_use_local_privs=YES&#xA;user_config_dir=/etc/vsftpd/vsftpd_user_conf    #虚拟用户配置文件存放目录&#xA;&#xA;grep -v &amp;#34;^#&amp;#34; /etc/vsftpd/vsftpd.conf &amp;gt;vsftpd.bak    #备份配置&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;重启服务&#34;&gt;&lt;span&gt;重启服务&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%87%8d%e5%90%af%e6%9c%8d%e5%8a%a1&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;/etc/init.d/vsftpd start&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;使用ftp&#34;&gt;&lt;span&gt;使用ftp&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%bd%bf%e7%94%a8ftp&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;linux&#34;&gt;&lt;span&gt;Linux&lt;/span&gt;&#xA;  &lt;a href=&#34;#linux&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;wget --ftp-user=user --ftp-password=password ftp://ip/test/test.rar&#xA;wget  ftp://&amp;#34;uesr:password&amp;#34;@ip:port/test/test.rar&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;windows&#34;&gt;&lt;span&gt;Windows&lt;/span&gt;&#xA;  &lt;a href=&#34;#windows&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;filezilla&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>常用工具</title>
      <link>https://blog.mulinux.com/en/%E5%B8%B8%E7%94%A8%E5%B7%A5%E5%85%B7/</link>
      <pubDate>Sat, 15 Oct 2016 09:10:49 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E5%B8%B8%E7%94%A8%E5%B7%A5%E5%85%B7/</guid>
      <category domain="https://blog.mulinux.com/en/categories/tools/">Tools</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;windows&#34;&gt;&lt;span&gt;Windows&lt;/span&gt;&#xA;  &lt;a href=&#34;#windows&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;无界鼠标：mouse with borders&lt;/li&gt;&#xA;&lt;li&gt;多桌面工具：dexpot&lt;/li&gt;&#xA;&lt;li&gt;终端神器：MobaXterm Personal Edition&lt;/li&gt;&#xA;&lt;li&gt;终端工具：mRemoteNG/finalshell/ZOC&lt;/li&gt;&#xA;&lt;li&gt;安卓模拟器：bluestacks/雷电&lt;/li&gt;&#xA;&lt;li&gt;文件搜索：everything&lt;/li&gt;&#xA;&lt;li&gt;文件管理：total commander&lt;/li&gt;&#xA;&lt;li&gt;磁盘大小分析工具：treesize&lt;/li&gt;&#xA;&lt;li&gt;快启工具：rolan/wox&lt;/li&gt;&#xA;&lt;li&gt;密码管理工具：keepass&lt;/li&gt;&#xA;&lt;li&gt;限速工具：NetLimiter&lt;/li&gt;&#xA;&lt;li&gt;端口扫描工具：ScanPort&lt;/li&gt;&#xA;&lt;li&gt;文件解锁工具：unlock&lt;/li&gt;&#xA;&lt;li&gt;视频播放器：PortPlayer&lt;/li&gt;&#xA;&lt;li&gt;MarkDown编辑器：Typora&lt;/li&gt;&#xA;&lt;li&gt;比对工具：Beyond Compare&lt;/li&gt;&#xA;&lt;li&gt;api调试工具：Postman&lt;/li&gt;&#xA;&lt;li&gt;时间同步工具：nettime&lt;/li&gt;&#xA;&lt;li&gt;显示亮度调节：flux&lt;/li&gt;&#xA;&lt;li&gt;检验工具：Hash&lt;/li&gt;&#xA;&lt;li&gt;虚拟磁盘工具：imdisk&lt;/li&gt;&#xA;&lt;li&gt;注册表快照：regsnap&lt;/li&gt;&#xA;&lt;li&gt;ftp客户端：Filezilla&lt;/li&gt;&#xA;&lt;li&gt;PDF合并: PDFMate Free PDF Merger&lt;/li&gt;&#xA;&lt;li&gt;按键精灵: autohotkey&lt;/li&gt;&#xA;&lt;li&gt;数据库工具：Navicat,DBeaver&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;markdown&#34;&gt;&lt;span&gt;markdown&lt;/span&gt;&#xA;  &lt;a href=&#34;#markdown&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;typora&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;清单&#34;&gt;&lt;span&gt;清单&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b8%85%e5%8d%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;滴答清单&lt;/li&gt;&#xA;&lt;li&gt;Microsoft to do&lt;/li&gt;&#xA;&lt;li&gt;todo清单&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;离线手册&#34;&gt;&lt;span&gt;离线手册&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%a6%bb%e7%ba%bf%e6%89%8b%e5%86%8c&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;zeal docset&lt;/li&gt;&#xA;&lt;li&gt;dash（MAC）&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;安卓&#34;&gt;&lt;span&gt;安卓&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e5%8d%93&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;Linux终端神器: JuiceSSH&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;ios&#34;&gt;&lt;span&gt;IOS&lt;/span&gt;&#xA;  &lt;a href=&#34;#ios&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;RDP终端神器：RD client&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;思维导图&#34;&gt;&lt;span&gt;思维导图&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%80%9d%e7%bb%b4%e5%af%bc%e5%9b%be&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;xmind&lt;/li&gt;&#xA;&lt;li&gt;processon&lt;/li&gt;&#xA;&lt;li&gt;mindmaster&lt;/li&gt;&#xA;&lt;li&gt;亿图图示&lt;/li&gt;&#xA;&lt;li&gt;迅捷画图&lt;/li&gt;&#xA;&lt;li&gt;wps&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://github.com/kuaifan/wookteam&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;wookteam&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;原型图uml&#34;&gt;&lt;span&gt;原型图/UML&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8e%9f%e5%9e%8b%e5%9b%beuml&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;Axure RP&lt;/li&gt;&#xA;&lt;li&gt;Mockplus&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;otp&#34;&gt;&lt;span&gt;OTP&lt;/span&gt;&#xA;  &lt;a href=&#34;#otp&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;yubikey&lt;/li&gt;&#xA;&lt;li&gt;fido2&lt;/li&gt;&#xA;&lt;li&gt;1password&lt;/li&gt;&#xA;&lt;li&gt;google authenticator&lt;/li&gt;&#xA;&lt;li&gt;freeotp&lt;/li&gt;&#xA;&lt;li&gt;google authenticator&lt;/li&gt;&#xA;&lt;li&gt;Bitwarden&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;端口转发&#34;&gt;&lt;span&gt;端口转发&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%ab%af%e5%8f%a3%e8%bd%ac%e5%8f%91&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;rinetd&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;git管理&#34;&gt;&lt;span&gt;git管理&lt;/span&gt;&#xA;  &lt;a href=&#34;#git%e7%ae%a1%e7%90%86&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;sourcetree&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>Gitlab 部署及升级</title>
      <link>https://blog.mulinux.com/en/gitlab-install-upgrade/</link>
      <pubDate>Wed, 12 Oct 2016 10:37:55 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/gitlab-install-upgrade/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;gitlab部署&#34;&gt;&lt;span&gt;gitlab部署&lt;/span&gt;&#xA;  &lt;a href=&#34;#gitlab%e9%83%a8%e7%bd%b2&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;使用yum安装&#34;&gt;&lt;span&gt;使用yum安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%bd%bf%e7%94%a8yum%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;# yum install curl policycoreutils openssh-server openssh-clients&#xA;# systemctl enable sshd&#xA;# systemctl start sshd&#xA;# yum install postfix&#xA;# systemctl enable postfix&#xA;# systemctl start postfix&#xA;# firewall-cmd --permanent --add-service=http&#xA;# systemctl reload firewalld&#xA;# vi /etc/yum.repos.d/gitlab-ce.repo&#xA;[gitlab-ce]&#xA;name=gitlab-ce&#xA;baseurl=http://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7&#xA;repo_gpgcheck=0&#xA;gpgcheck=0&#xA;enabled=1&#xA;gpgkey=https://packages.gitlab.com/gpg.key&#xA;# yum makecache&#xA;# yum install gitlab-ce&#xA;# gitlab-ctl reconfigure&#xA;# vi /var/opt/gitlab/gitlab-rails/etc/gitlab.yml&#xA;# vi /var/opt/gitlab/nginx/conf/gitlab-http.conf&#xA;# vi /opt/gitlab/embedded/conf/nginx.conf&#xA;# vi /var/opt/gitlab/gitlab-rails/etc/gitlab.yml&#xA;# vi /etc/gitlab/gitlab.rb&#xA;# git clone https://gitlab.com/xhang/gitlab.git&#xA;# cat /opt/gitlab/embedded/service/gitlab-rails/VERSION&#xA;# git diff origin/8-8-stable origin/8-8-zh &amp;gt; /tmp/8.8.diff&#xA;# gitlab-ctl stop&#xA;# cd /opt/gitlab/embedded/service/gitlab-rails&#xA;# git apply /tmp/8.8.diff&#xA;# gitlab-ctl start&#xA;# /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml&#x9;#将host改为192.168.2.169&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;gitlab升级&#34;&gt;&lt;span&gt;gitlab升级&lt;/span&gt;&#xA;  &lt;a href=&#34;#gitlab%e5%8d%87%e7%ba%a7&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;# wget https://packages.gitlab.com/gitlab/gitlab-ce/packages/ol/6/gitlab-ce-8.15.1-ce.0.el6.x86_64.rpm/download&#xA;# rpm -Uvh gitlab-ce-8.15.1-ce.0.el6.x86_64.rpm &#xA;# gitlab-ctl reconfigure&#xA;# gitlab-ctl restart&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Linux Mail</title>
      <link>https://blog.mulinux.com/en/linux-command-mail/</link>
      <pubDate>Sat, 01 Oct 2016 11:40:59 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-command-mail/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装mailx&#34;&gt;&lt;span&gt;安装mailx&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85mailx&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;先查询一下有没有安装过&#xA;#rpm -qa |grep mailx&#xA;&#xA;没安装的话执行安装&#xA;#yum install mailx&#xA;#rpm -qa |grep mailx&#xA;mailx-12.4-8.el6_6.x86_64&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;配置发件账户&#34;&gt;&lt;span&gt;配置发件账户&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%85%8d%e7%bd%ae%e5%8f%91%e4%bb%b6%e8%b4%a6%e6%88%b7&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;编辑/etc/mail.rc ,加入如下语句：&#xA;set from=user@tom.com smtp=smtp.tom.com&#xA;set smtp-auth-user=your_E-mail_address smtp-auth-password=your_password&#xA;set smtp-auth=login&#xA;&#xA;说明：&#xA;from                   就是发送者的邮件地址，就是你自己的一个可用的邮件地址。&#xA;smtp                   是指提供邮件服务的主机，比如smtp.tom.com; smtp.126.com等&#xA;smtp-auth-user       是指你在服务主机上的邮箱用户名&#xA;smtp-auth-password 当然是你在smtp主机上的密码&#xA;smtp-auth              验证方式了&#xA;&#xA;因为配置中提供的密码是明文的，所以最好 chmod 600 .mailrc，以免泄密。&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;发邮件测试&#34;&gt;&lt;span&gt;发邮件测试&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8f%91%e9%82%ae%e4%bb%b6%e6%b5%8b%e8%af%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;发送格式：&#xA;mailx -s subject user@xxx.com &amp;lt; message_file&#xA;subject表示邮件主题；user@xxx.com是收件人，&amp;lt;mes_file是需要发送的邮件内容。&#xA;&#xA;如：&#xA;&#xA;mailx -s &amp;#34;test mail&amp;#34; zdd@163.com &amp;amp;lt; msg&#xA;或者&#xA;cat msg | mailx -s &amp;#34;test mail&amp;#34; zdd@163.com&#xA;&#xA;多个收件人之间用逗号分隔&#xA;cat msg | mailx -s &amp;#34;test mail&amp;#34; zdd@163.com,zdd2@163.com,zdd2@163.com&#xA;&#xA;也可以直接从命令行输入邮件内容：&#xA;mailx -s &amp;#34;test mail&amp;#34; zdd@163.com&#xA;&#xA;上面这条命令会进入命令行输入状态，此时可以输入内容，按Ctrl&amp;#43;d键来结束输入。&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;其他选项&#34;&gt;&lt;span&gt;其他选项&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%85%b6%e4%bb%96%e9%80%89%e9%a1%b9&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;-r 指定发件人&lt;/p&gt;</description>
    </item>
    <item>
      <title>编程知识思维导图</title>
      <link>https://blog.mulinux.com/en/%E7%BC%96%E7%A8%8B%E7%9F%A5%E8%AF%86%E6%80%9D%E7%BB%B4%E5%AF%BC%E5%9B%BE/</link>
      <pubDate>Thu, 19 May 2016 09:54:37 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E7%BC%96%E7%A8%8B%E7%9F%A5%E8%AF%86%E6%80%9D%E7%BB%B4%E5%AF%BC%E5%9B%BE/</guid>
      <category domain="https://blog.mulinux.com/en/categories/development/">Development</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;编程知识思维导图&#34;&gt;&lt;span&gt;编程知识思维导图&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bc%96%e7%a8%8b%e7%9f%a5%e8%af%86%e6%80%9d%e7%bb%b4%e5%af%bc%e5%9b%be&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/%E7%BC%96%E7%A8%8B%E7%9F%A5%E8%AF%86%E6%80%9D%E7%BB%B4%E5%AF%BC%E5%9B%BE.png&#39; alt=&#34;编程知识思维导图&#34;&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Emlog自动给文章内的站外超链接添加nofollow</title>
      <link>https://blog.mulinux.com/en/emlog-article-url-add-nofollow/</link>
      <pubDate>Thu, 07 Apr 2016 09:38:21 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/emlog-article-url-add-nofollow/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;添加relexternal-nofollow&#34;&gt;&lt;span&gt;添加rel=&amp;ldquo;external nofollow&amp;rdquo;&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b7%bb%e5%8a%a0relexternal-nofollow&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;这是SEO优化站点文章常用方式之一。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Linux Sendmail</title>
      <link>https://blog.mulinux.com/en/linux-command-sendmail/</link>
      <pubDate>Mon, 28 Mar 2016 11:40:16 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-command-sendmail/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装sendemail&#34;&gt;&lt;span&gt;安装sendemail&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85sendemail&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;# wget http://caspian.dotconf.net/menu/Software/SendEmail/sendEmail-v1.56.tar.gz //下载1.56版本&#xA;# tar -xzvf sendEmail-v1.56.tar.gz&#xA;# mv sendEmail /usr/local/bin/&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;发送邮件&#34;&gt;&lt;span&gt;发送邮件&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8f%91%e9%80%81%e9%82%ae%e4%bb%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;#  /usr/local/bin/sendEmail -f mulinux@163.com -t mulinux@qq.com \    -s smtp.163.com -u &amp;#34;我是邮件主题&amp;#34; -o message-content-type=html \    -o message-charset=utf8 -xu mulinux@163.com -xp 123456 -m &amp;#34;我是邮件内容&amp;#34;&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;命令说明&#34;&gt;&lt;span&gt;命令说明&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%91%bd%e4%bb%a4%e8%af%b4%e6%98%8e&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;/usr/local/bin/sendEmail 命令主程序&#xA;-f mulinux@163.com  发件人邮箱&#xA;-s smtp.163.com       发件人邮箱的smtp服务器&#xA;-u &amp;#34;我是邮件主题&amp;#34;     邮件的标题&#xA;-o message-content-type=html   邮件内容的格式,html表示它是html格式&#xA;-o message-charset=utf8        邮件内容编码&#xA;-xu mulinux@163.com          发件人邮箱的用户名&#xA;-xp 123456               发件人邮箱密码&#xA;-m &amp;#34;我是邮件内容&amp;#34;        邮件的具体内容&#xA;发送成功之后会有如下提示：Email was sent successfully!&#xA;&#xA;查看帮助：sendEmail --help&#xA;&#xA;注：需提交开启发件账号的pop3/smtp，163或者qq邮箱的密码使用授权码即可。&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;参考：http://www.ttlsa.com/linux/use-sendemail/&lt;/p&gt;</description>
    </item>
    <item>
      <title>Use Saltstack</title>
      <link>https://blog.mulinux.com/en/use-saltstack/</link>
      <pubDate>Wed, 02 Mar 2016 11:35:08 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-saltstack/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;准备&#34;&gt;&lt;span&gt;准备&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%87%86%e5%a4%87&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;Centos6.6 192.168.99.234 web1.mulinux.com 192.168.99.235 web2.mulinux.com&lt;/p&gt;</description>
    </item>
    <item>
      <title>禁止root登录，su&amp;sudo用户身份切换到user1登录</title>
      <link>https://blog.mulinux.com/en/set-permitrootlogin-sudo/</link>
      <pubDate>Wed, 17 Feb 2016 10:17:30 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/set-permitrootlogin-sudo/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;禁止root登录&#34;&gt;&lt;span&gt;禁止root登录&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%a6%81%e6%ad%a2root%e7%99%bb%e5%bd%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vim /etc/ssh/sshd_config 加入一行：&#xA;PermitRootLogin no&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;切换到user1登录&#34;&gt;&lt;span&gt;切换到user1登录&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%87%e6%8d%a2%e5%88%b0user1%e7%99%bb%e5%bd%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;su - 用来初始化环境变量 $PATH $HOME等&#xA;sudo su到root需要输入root的密码不安全&#xA;visudo 编辑/etc/sudoers 配置文件 没有命令需安装 yum install -y sudo&#xA;格式： user host=(as_user) commands&#xA;比如： user1 ALL=(ALL) NOPASSWD: SU //它的意思是，让user1这个普通用户，拥有root的权限&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Linux 常用命令</title>
      <link>https://blog.mulinux.com/en/linux-command-example/</link>
      <pubDate>Tue, 09 Feb 2016 22:39:28 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/linux-command-example/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;find&#34;&gt;&lt;span&gt;find&lt;/span&gt;&#xA;  &lt;a href=&#34;#find&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;find . -size &amp;#43;100M -exec du -sh {} \; #查找当前目录下大于100M的文件&#xA;find  . -maxdepth  2  -name 201507*   -exec  rm -rf {} \; #清理备份命令&#xA;find / -type f -name &amp;#34;test.txt&amp;#34; | xargs rm -f  #查找并删除&#xA;find / -type f -name &amp;#34;test.txt&amp;#34; -exec rm -rf {} \; #查找并删除&#xA;find / -type f -name &amp;#34;*.log&amp;#34; -mtime &amp;#43;5|xargs rm -f  #删除五天前的log文件  -type d 查找文件夹 -type f 查找文件&#xA;find / -type f -name &amp;#39;test.txt&amp;#39; | xargs sed -i s#test#newtest#g    查找内容并替换&#xA;find / -type f -name &amp;#39;*.txt&amp;#39; | xargs cat  批量查看&#xA;find /mds -xdev -printf &amp;#39;%h\n&amp;#39; |sort|uniq -c|sort -k 1 -n # 查看Linux目录的inode数量&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;ls&#34;&gt;&lt;span&gt;ls&lt;/span&gt;&#xA;  &lt;a href=&#34;#ls&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;ls -l --time-style=long-iso # 显示成年月日格式 &lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;cut&#34;&gt;&lt;span&gt;cut&lt;/span&gt;&#xA;  &lt;a href=&#34;#cut&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-d ：后面跟分隔字符，分隔字符要用单引号括起来&#xA;-c ：后面接的是第几个字符&#xA;-f ：后面接的是第几个区块&#xA;cut -d &amp;#39;:&amp;#39; -f 2 /etc/passwd&#xA;cut -d &amp;#39;:&amp;#39; -f 1-3 /etc/passwd&#xA;cut -d &amp;#39;:&amp;#39; -f 1,3 /etc/passwd&#xA;cut -c 2-5 /etc/passwd&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;sort&#34;&gt;&lt;span&gt;sort&lt;/span&gt;&#xA;  &lt;a href=&#34;#sort&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-t 分隔符 ：作用跟cut的-d一个意思&#xA;-n ：使用纯数字排序&#xA;-r ：反向排序&#xA;-u ：去重复&#xA;-kn1,n2 ：由n1区间排序到n2区间，可以只写-kn1，即对n1字段排序&#xA;sort -t &amp;#39;:&amp;#39; -k3 /etc/passwd&#xA;sort -t &amp;#39;:&amp;#39; -k3 -n /etc/passwd |cut -d &amp;#39;:&amp;#39; -f 3&#xA;cut -d &amp;#39;:&amp;#39; -f 3 /etc/passwd  | sort -n  常用&#xA;cut -d &amp;#39;:&amp;#39; -f 3 1.txt | sort -nr|uniq -c&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;awk&#34;&gt;&lt;span&gt;awk&lt;/span&gt;&#xA;  &lt;a href=&#34;#awk&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;以冒号为分隔符取出IP&#xA;ifconfig eth0 | awk -F: &amp;#39;/inet addr/ {print $2}&amp;#39;| awk &amp;#39;{print $1}&amp;#39;&#xA;&#xA;以一个或者多个空格和单个冒号作为分隔符取出ip&#xA;ifconfig eth0 | grep &amp;#39;inet addr&amp;#39;|awk -F &amp;#39; &amp;#43;|:&amp;#39; &amp;#39;{print $4}&amp;#39;&#xA;&#xA;以一个或者多个空格和一个或者多个空格冒号作为分隔符取出ip&#xA;ifconfig eth0 | grep &amp;#39;inet addr&amp;#39;|awk -F &amp;#39;[ :]&amp;#43;&amp;#39; &amp;#39;{print $4}&amp;#39;&#xA;&#xA;过滤出404URL&#xA;cat access.log  |awk &amp;#39;$9~/404/&amp;#39; &#xA;&#xA;过滤出IP和url&#xA;grep -Ev  &amp;#39;(HTTP|GET)&amp;#39; access.log|awk &amp;#39;{print $1,$7}&amp;#39; access.log|sort | uniq -c |sort -n -k 1 -r&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;压缩解压&#34;&gt;&lt;span&gt;压缩解压&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%8e%8b%e7%bc%a9%e8%a7%a3%e5%8e%8b&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;tar打包当前目录到tarname.tar&#xA;tar cvf tarname.tar ./*.* #tar zcvf tarname.tar.gz ./*.*&#xA;&#xA;tar解压到当前目录&#xA;tar xvf tarname.tar #tar zxvf tarname.tar&#xA;&#xA;zip压缩&#xA;zip -r data.zip data&#xA;&#xA;zip解压&#xA;unzip data.zip -d databak&#xA;&#xA;rar解压&#xA;rar -x data.rar&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;nslookup&#34;&gt;&lt;span&gt;nslookup&lt;/span&gt;&#xA;  &lt;a href=&#34;#nslookup&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;cmd--&amp;gt;nslookup -qt=mx mulinux.com #查看域名mx记录&#xA;cmd--&amp;gt;nslookup--&amp;gt;set q=mx--&amp;gt;mulinux.com #查看域名的mx记录&#xA;cmd--&amp;gt;nslookup--&amp;gt;set q=any--&amp;gt;mulinux.com #查看mulinux.com的解析服务情况&#xA;nslookup -qa=ptr  （ip） #检测反向解析&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;tracert&#34;&gt;&lt;span&gt;tracert&lt;/span&gt;&#xA;  &lt;a href=&#34;#tracert&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;windows：tracert -d mulinux.com    &#xA;linux：traceroute -d www.baidu.com&lt;/code&gt;&lt;/pre&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;dd&#34;&gt;&lt;span&gt;DD&lt;/span&gt;&#xA;  &lt;a href=&#34;#dd&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;整盘数据备份与恢复&#34;&gt;&lt;span&gt;整盘数据备份与恢复&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%95%b4%e7%9b%98%e6%95%b0%e6%8d%ae%e5%a4%87%e4%bb%bd%e4%b8%8e%e6%81%a2%e5%a4%8d&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;备份：&#xA;dd if=/dev/hdx of=/dev/hdy&#xA;将本地的/dev/hdx整盘备份到/dev/hdy&#xA;&#xA;dd if=/dev/hdx of=/path/to/image&#xA;将/dev/hdx全盘数据备份到指定路径的image文件&#xA;&#xA;dd if=/dev/hdx | gzip &amp;gt;/path/to/image.gz&#xA;备份/dev/hdx全盘数据，并利用gzip工具进行压缩，保存到指定路径&#xA;&#xA;恢复：&#xA;dd if=/path/to/image of=/dev/hdx&#xA;将备份文件恢复到指定盘&#xA;&#xA;gzip -dc /path/to/image.gz | dd of=/dev/hdx&#xA;将压缩的备份文件恢复到指定盘&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;利用netcat远程备份&#34;&gt;&lt;span&gt;利用netcat远程备份&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%a9%e7%94%a8netcat%e8%bf%9c%e7%a8%8b%e5%a4%87%e4%bb%bd&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/hda bs=16065b | netcat &amp;lt; targethost-IP &amp;gt; 1234&#xA;在源主机上执行此命令备份/dev/hda&#xA;&#xA;netcat -l -p 1234 | dd of=/dev/hdc bs=16065b&#xA;在目的主机上执行此命令来接收数据并写入/dev/hdc&#xA;&#xA;netcat -l -p 1234 | bzip2 &amp;gt; partition.img&#xA;netcat -l -p 1234 | gzip &amp;gt; partition.img&#xA;以上两条指令是目的主机指令的变化分别采用bzip2 gzip对数据进行压缩，并将备份文件保存在当前目录。&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;备份mbr&#34;&gt;&lt;span&gt;备份MBR&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%a4%87%e4%bb%bdmbr&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;备份：&#xA;dd if=/dev/hdx of=/path/to/image count=1 bs=512&#xA;备份磁盘开始的512Byte大小的MBR信息到指定文件&#xA;&#xA;恢复：&#xA;dd if=/path/to/image of=/dev/hdx&#xA;将备份的MBR信息写到磁盘开始部分&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;备份软盘&#34;&gt;&lt;span&gt;备份软盘&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%a4%87%e4%bb%bd%e8%bd%af%e7%9b%98&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/fd0 of=disk.img count=1 bs=1440k&#xA;将软驱数据备份到当前目录的disk.img文件&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;拷贝内存资料到硬盘&#34;&gt;&lt;span&gt;拷贝内存资料到硬盘&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%8b%b7%e8%b4%9d%e5%86%85%e5%ad%98%e8%b5%84%e6%96%99%e5%88%b0%e7%a1%ac%e7%9b%98&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/mem of=/root/mem.bin bs=1024&#xA;将内存里的数据拷贝到root目录下的mem.bin文件&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;从光盘拷贝iso镜像&#34;&gt;&lt;span&gt;从光盘拷贝iso镜像&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%bb%8e%e5%85%89%e7%9b%98%e6%8b%b7%e8%b4%9diso%e9%95%9c%e5%83%8f&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/cdrom of=/root/cd.iso&#xA;拷贝光盘数据到root文件夹下，并保存为cd.iso文件     &lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;增加swap分区文件大小&#34;&gt;&lt;span&gt;增加Swap分区文件大小&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%a2%9e%e5%8a%a0swap%e5%88%86%e5%8c%ba%e6%96%87%e4%bb%b6%e5%a4%a7%e5%b0%8f&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/zero of=/swapfile bs=1024 count=262144&#xA;创建一个足够大的文件（此处为256M）&#xA;&#xA;mkswap /swapfile&#xA;把这个文件变成swap文件&#xA;&#xA;swapon /swapfile&#xA;启用这个swap文件&#xA;&#xA;/swapfile swap swap defaults 0 0&#xA;在每次开机的时候自动加载swap文件,需要在 /etc/fstab文件中增加一行&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;销毁磁盘数据&#34;&gt;&lt;span&gt;销毁磁盘数据&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%94%80%e6%af%81%e7%a3%81%e7%9b%98%e6%95%b0%e6%8d%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/urandom of=/dev/hda1&#xA;利用随机的数据填充硬盘，在某些必要的场合可以用来销毁数据。执行此操作以后，/dev/hda1将无法挂载，创建和拷贝操作无法执行。&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;得到最恰当的block-size&#34;&gt;&lt;span&gt;得到最恰当的block size&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%be%97%e5%88%b0%e6%9c%80%e6%81%b0%e5%bd%93%e7%9a%84block-size&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/zero bs=1024 count=1000000 of=/root/1Gb.file&#xA;dd if=/dev/zero bs=2048 count=500000 of=/root/1Gb.file&#xA;dd if=/dev/zero bs=4096 count=250000 of=/root/1Gb.file     &#xA;dd if=/dev/zero bs=8192 count=125000 of=/root/1Gb.file&#xA;通过比较dd指令输出中所显示的命令执行时间，即可确定系统最佳的block size大小&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;测试硬盘读写速度&#34;&gt;&lt;span&gt;测试硬盘读写速度&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b5%8b%e8%af%95%e7%a1%ac%e7%9b%98%e8%af%bb%e5%86%99%e9%80%9f%e5%ba%a6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/root/1Gb.file bs=64k | dd of=/dev/null&#xA;dd if=/dev/zero of=/root/1Gb.file bs=1024 count=1000000&#xA;通过上两个命令输出的执行时间，可以计算出测试硬盘的读／写速度     &lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;修复硬盘&#34;&gt;&lt;span&gt;修复硬盘&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%bf%ae%e5%a4%8d%e7%a1%ac%e7%9b%98&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/sda of=/dev/sda&#xA;当硬盘较长时间（比如1，2年）放置不使用后，磁盘上会产生magnetic flux point。当磁头读到这些区域时会遇到困难，并可能导致I/O错误。当这种情况影响到硬盘的第一个扇区时，可能导致硬盘报废。上边的命令有可能使这些数据起死回生。且这个过程是安全，高效的。&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;测试硬盘读写&#34;&gt;&lt;span&gt;测试硬盘读写&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b5%8b%e8%af%95%e7%a1%ac%e7%9b%98%e8%af%bb%e5%86%99&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;dd if=/dev/zero of=test.dbf bs=8k count=200000 conv=fdatasync&#xA;&#xA;参考文档：http://elf8848.iteye.com/blog/2089055&#xA;&#xA;测试方式：使用dd指令，对磁盘进行连续写入，不使用内存缓冲区，每次写入8k的数据，总共写入20万次，产生1.6G大小的文件。&#xA;&#xA;测试指令：dd if=/dev/zero of=/data01/test.dbf bs=8k count=200000 conv=fdatasync&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;正确的使用dd进行磁盘读写速度测试&#34;&gt;&lt;span&gt;正确的使用dd进行磁盘读写速度测试&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%ad%a3%e7%a1%ae%e7%9a%84%e4%bd%bf%e7%94%a8dd%e8%bf%9b%e8%a1%8c%e7%a3%81%e7%9b%98%e8%af%bb%e5%86%99%e9%80%9f%e5%ba%a6%e6%b5%8b%e8%af%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;dd是Linux/UNIX 下的一个非常有用的命令，作用是用指定大小的块拷贝一个文件，并在拷贝的同时进行指定的转换，所以可以用来测试硬盘的顺序读写能力。可以写文件，可以写裸设备。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Sqlserver计算机重名问题</title>
      <link>https://blog.mulinux.com/en/sqlserver%E9%87%8D%E5%90%8D/</link>
      <pubDate>Sun, 17 Jan 2016 11:20:48 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/sqlserver%E9%87%8D%E5%90%8D/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;查看已经存在服务器列表&#34;&gt;&lt;span&gt;查看已经存在服务器列表：&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%9f%a5%e7%9c%8b%e5%b7%b2%e7%bb%8f%e5%ad%98%e5%9c%a8%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%88%97%e8%a1%a8&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;select * from master.sys.servers&lt;/p&gt;</description>
    </item>
    <item>
      <title>Use Puppet</title>
      <link>https://blog.mulinux.com/en/use-puppet/</link>
      <pubDate>Sat, 02 Jan 2016 11:32:42 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-puppet/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装准备&#34;&gt;&lt;span&gt;安装准备&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85%e5%87%86%e5%a4%87&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;两台centos6.6_x64机器&lt;/p&gt;</description>
    </item>
    <item>
      <title>5k路由器刷华硕n14u</title>
      <link>https://blog.mulinux.com/en/5krouter-n14u/</link>
      <pubDate>Tue, 22 Dec 2015 17:44:04 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/5krouter-n14u/</guid>
      <category domain="https://blog.mulinux.com/en/categories/network/">Network</category>
      <description>&lt;p&gt;设备：5k路由器（MT7620A、16M+64M）&lt;/p&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;登录原厂固件里web-19216851&#34;&gt;&lt;span&gt;登录原厂固件里WEB 192.168.5.1&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%99%bb%e5%bd%95%e5%8e%9f%e5%8e%82%e5%9b%ba%e4%bb%b6%e9%87%8cweb-19216851&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;刷高科固件 Q306升级包v2.20 20140722 .bin&lt;/li&gt;&#xA;&lt;li&gt;5K路由器wifi密码是5Kwifi,注意K是大写的&lt;/li&gt;&#xA;&lt;li&gt;刷高科固件，管理帐号密码：admin gaoke&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;登陆web-19216881&#34;&gt;&lt;span&gt;登陆WEB 192.168.8.1&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%99%bb%e9%99%86web-19216881&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;刷SDK固件 firmware sdk.bin&lt;/li&gt;&#xA;&lt;li&gt;刷完后路由IP变为 192.168.8.1&lt;/li&gt;&#xA;&lt;li&gt;帐号密码：admin gaoke&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;刷不死-breed&#34;&gt;&lt;span&gt;刷不死 Breed&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%b7%e4%b8%8d%e6%ad%bb-breed&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;在 SDK 管理WEB, administration&amp;ndash;upload firmware&amp;ndash;update bootloader&lt;/li&gt;&#xA;&lt;li&gt;192.168.8.1，选择不死Breed breed-mt7620-reset12.bin&lt;/li&gt;&#xA;&lt;li&gt;注：reset键重启不放拔电源后再接上电源，路由器信号灯连闪四次算成功&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;进入breed的web界面&#34;&gt;&lt;span&gt;进入breed的web界面&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%bf%9b%e5%85%a5breed%e7%9a%84web%e7%95%8c%e9%9d%a2&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;更新固件RT-N14U-GPIO-12-5K-64M_3.4.3.9-099.trx，等待路由器自动重启后即可。&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;默认账号密码admin&lt;/p&gt;</description>
    </item>
    <item>
      <title>Dell_Raid阵列卡驱动</title>
      <link>https://blog.mulinux.com/en/dell_raid%E9%98%B5%E5%88%97%E5%8D%A1%E9%A9%B1%E5%8A%A8/</link>
      <pubDate>Fri, 11 Dec 2015 11:23:20 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/dell_raid%E9%98%B5%E5%88%97%E5%8D%A1%E9%A9%B1%E5%8A%A8/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;&lt;a href=&#34;http://zh.community.dell.com/support_forums/poweredge/f/279/t/9581&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;http://zh.community.dell.com/support_forums/poweredge/f/279/t/9581&lt;/a&gt;&#xA;&lt;a href=&#34;http://zh.community.dell.com/support_forums/poweredge/f/279/p/9588/29512#29512&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;http://zh.community.dell.com/support_forums/poweredge/f/279/p/9588/29512#29512&lt;/a&gt;&#xA;&lt;a href=&#34;http://zh.community.dell.com/support_forums/poweredge/f/279&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;http://zh.community.dell.com/support_forums/poweredge/f/279&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>CentOS补家目录方法</title>
      <link>https://blog.mulinux.com/en/centos-add-user-home/</link>
      <pubDate>Fri, 11 Dec 2015 10:04:22 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos-add-user-home/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;创建不带家目录的用户&#34;&gt;&lt;span&gt;创建不带家目录的用户&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%9b%e5%bb%ba%e4%b8%8d%e5%b8%a6%e5%ae%b6%e7%9b%ae%e5%bd%95%e7%9a%84%e7%94%a8%e6%88%b7&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;useradd -u 508 -g group2 -M user4    #-M不创建家目录&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>LANMP一键安装脚本</title>
      <link>https://blog.mulinux.com/en/centos-lanmp-sh/</link>
      <pubDate>Sun, 29 Nov 2015 10:13:33 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos-lanmp-sh/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;Centos6 ，不区分32位，64位， 要求机器可以上外网。 支持lamp 和 lnmp， mysql支持5.1和5.6两个版本，php支持5.3和5.6两个版本，apache2.2，nginx1.8&lt;/p&gt;</description>
    </item>
    <item>
      <title>pureftp部署和优化</title>
      <link>https://blog.mulinux.com/en/use-pureftp/</link>
      <pubDate>Sun, 22 Nov 2015 10:08:31 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-pureftp/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装&#34;&gt;&lt;span&gt;安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;cd /usr/local/src/&#xA;wget http://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.42.tar.bz2&#xA;tar jxf pure-ftpd-1.0.42.tar.bz2&#xA;cd pure-ftpd-1.0.42&#xA;./configure \&#xA;--prefix=/usr/local/pureftpd \&#xA;--without-inetd \&#xA;--with-altlog \&#xA;--with-puredb \&#xA;--with-throttling \&#xA;--with-peruserlimits  \&#xA;--with-tls&#xA;make &amp;amp;&amp;amp; make install&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;配置&#34;&gt;&lt;span&gt;配置&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%85%8d%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;cd configuration-file&#xA;mkdir -p /usr/local/pureftpd/etc/&#xA;cp pure-ftpd.conf    /usr/local/pureftpd/etc/pure-ftpd.conf&#xA;cp pure-config.pl    /usr/local/pureftpd/sbin/pure-config.pl&#xA;chmod 755    /usr/local/pureftpd/sbin/pure-config.pl&#xA;vi /usr/local/pureftpd/etc/pure-ftpd.conf&#xA;ChrootEveryone              yes&#xA;BrokenClientsCompatibility  no&#xA;MaxClientsNumber            50&#xA;Daemonize                   yes&#xA;MaxClientsPerIP             8&#xA;VerboseLog                  no&#xA;DisplayDotFiles             yes&#xA;AnonymousOnly               no&#xA;NoAnonymous                 no&#xA;SyslogFacility              ftp&#xA;DontResolve                 yes&#xA;MaxIdleTime                 15&#xA;PureDB                        /usr/local/pureftpd/etc/pureftpd.pdb&#xA;LimitRecursion              3136 8&#xA;AnonymousCanCreateDirs      no&#xA;MaxLoad                     4&#xA;AntiWarez                   yes&#xA;Umask                       133:022&#xA;MinUID                      100&#xA;AllowUserFXP                no&#xA;AllowAnonymousFXP           no&#xA;ProhibitDotFilesWrite       no&#xA;ProhibitDotFilesRead        no&#xA;AutoRename                  no&#xA;AnonymousCantUpload         no&#xA;PIDFile                     /usr/local/pureftpd/var/run/pure-ftpd.pid&#xA;MaxDiskUsage               99&#xA;CustomerProof              yes&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;建立用户&#34;&gt;&lt;span&gt;建立用户&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%bb%ba%e7%ab%8b%e7%94%a8%e6%88%b7&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;mkdir /data/www/&#xA;useradd www&#xA;chown -R www:www /data/www/&#xA;/usr/local/pureftpd/bin/pure-pw useradd ftp_user1  -uwww -d /data/www/&#xA;/usr/local/pureftpd/bin/pure-pw mkdb  创建用户信息数据库文件&#xA;/usr/local/pureftpd/bin/pure-pw list&#xA;/usr/local/pureftpd/bin/pure-pw  userdel ftp_user2 删除账号&#xA;/usr/local/pureftpd/bin/pure-pw  useradd ftp_user2 -uwww -d /tmp  删除账号, 再创建一个账号&#xA;/usr/local/pureftpd/bin/pure-pw mkdb 创建后要执行一下&#xA;&#xA;ps aux | grep pureftp&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装lftp测试ftp情况&#34;&gt;&lt;span&gt;安装lftp测试ftp情况&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85lftp%e6%b5%8b%e8%af%95ftp%e6%83%85%e5%86%b5&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;yum install -y lftp&#xA;lftp ftp_user1@127.0.0.1&#xA;touch /data/www/123.txt&#xA;tail /var/log/messages 查看ftp账号是否正常登录并创建文件&#xA;&#xA;get 1.txt  下载文件   在用户目录下&#xA;put 1.txt  上传文件    同get&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;直接用FTP命令来测试&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pxe Kicstart for Centos</title>
      <link>https://blog.mulinux.com/en/pxe-kicstart-for-centos/</link>
      <pubDate>Sat, 17 Oct 2015 15:15:39 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/pxe-kicstart-for-centos/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;&lt;img loading=&#34;lazy&#34; src=&#39;https://cdn.jsdelivr.net/gh/jiuchan/pic1.blog.mulinux.com/img/image-20201116151115835.png&#39; alt=&#34;image-20201116151115835&#34;&gt;&lt;/p&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;环境准备&#34;&gt;&lt;span&gt;环境准备&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%8e%af%e5%a2%83%e5%87%86%e5%a4%87&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;Linux-pxe服务器：192.168.216.20，Centos6.6_X64；网关和dns地址都为192.168.216.2。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lanmp&#43;nginxproxy&#43;discuz&#43;wordpress&#43;phpmyadmin</title>
      <link>https://blog.mulinux.com/en/lanmp-nginxproxy-discuz-wordpress-phpmyadmin/</link>
      <pubDate>Thu, 03 Sep 2015 14:00:40 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/lanmp-nginxproxy-discuz-wordpress-phpmyadmin/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;搭建LAMP，安装Nginx，作为代理，将MySQL安装在单独的机器，apache负责动态，nginx负责静态&lt;/p&gt;&#xA;&lt;h1 class=&#34;heading-element&#34; id=&#34;实验环境&#34;&gt;&lt;span&gt;实验环境&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%9e%e9%aa%8c%e7%8e%af%e5%a2%83&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;p&gt;1、VMware Workstation 9&lt;/p&gt;</description>
    </item>
    <item>
      <title>Windows使用Diskpart扩容磁盘</title>
      <link>https://blog.mulinux.com/en/windows-diskpart-extend/</link>
      <pubDate>Sun, 16 Aug 2015 18:21:15 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/windows-diskpart-extend/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;扩容命令&#34;&gt;&lt;span&gt;扩容命令&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%89%a9%e5%ae%b9%e5%91%bd%e4%bb%a4&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;diskpart   &#xA;list volume    &#xA;select volume 1   &#xA;extend&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Zabbix2.4.7 yum部署</title>
      <link>https://blog.mulinux.com/en/zabbix-2.4.7/</link>
      <pubDate>Thu, 13 Aug 2015 14:19:29 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/zabbix-2.4.7/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;服务端&#34;&gt;&lt;span&gt;服务端&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%9c%8d%e5%8a%a1%e7%ab%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;先添加一个zabbix的官方yum源&#34;&gt;&lt;span&gt;先添加一个zabbix的官方yum源&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%85%88%e6%b7%bb%e5%8a%a0%e4%b8%80%e4%b8%aazabbix%e7%9a%84%e5%ae%98%e6%96%b9yum%e6%ba%90&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[root@localhost ~]# rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm&#xA;&#xA;[root@localhost ~]# setenforce 0&#xA;[root@localhost ~]# sed -i &amp;#34;s#SELINUX=enforcing#SELINUX=disabled#g&amp;#34; /etc/selinux/config&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装组件包会把lamp环境和zabbix组件一起装好&#34;&gt;&lt;span&gt;安装组件包（会把LAMP环境和ZABBIX组件一起装好）&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85%e7%bb%84%e4%bb%b6%e5%8c%85%e4%bc%9a%e6%8a%8alamp%e7%8e%af%e5%a2%83%e5%92%8czabbix%e7%bb%84%e4%bb%b6%e4%b8%80%e8%b5%b7%e8%a3%85%e5%a5%bd&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[root@localhost ~]# yum -y install iksemel libssh2 zabbix-server-mysql zabbix-web-mysql mysql-server zabbix-agent net-snmp-devel net-snmp-libs net-snmp-perl net-snmp-utils net-snmp&#xA;[root@localhost ~]# /etc/init.d/mysqld start&#xA;[root@localhost ~]# mysqladmin -uroot password zabbix&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;配置mysql数据库这里默认是安装的mysql-51&#34;&gt;&lt;span&gt;配置MYSQL数据库(这里默认是安装的MYSQL 5.1)&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%85%8d%e7%bd%aemysql%e6%95%b0%e6%8d%ae%e5%ba%93%e8%bf%99%e9%87%8c%e9%bb%98%e8%ae%a4%e6%98%af%e5%ae%89%e8%a3%85%e7%9a%84mysql-51&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[root@localhost ~]# mysql -p&#xA;mysql&amp;gt; create database zabbix character set utf8;&#xA;mysql&amp;gt; grant all privileges on zabbix.* to zabbix@localhost identified by &amp;#39;zabbix&amp;#39;;&#xA;mysql&amp;gt; flush privileges;&#xA;mysql&amp;gt; source /usr/share/doc/zabbix-server-mysql-2.4.7/create/schema.sql;&#xA;mysql&amp;gt; source /usr/share/doc/zabbix-server-mysql-2.4.7/create/images.sql;&#xA;mysql&amp;gt; source /usr/share/doc/zabbix-server-mysql-2.4.7/create/data.sql;&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;编辑zabbix的配置文件&#34;&gt;&lt;span&gt;编辑zabbix的配置文件&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bc%96%e8%be%91zabbix%e7%9a%84%e9%85%8d%e7%bd%ae%e6%96%87%e4%bb%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vi  /etc/zabbix/zabbix_server.conf&#xA;&#xA;依次找到DBHost  DBName  DBUser DBPassword 四个关键字,&#xA;&#xA;修改成你自己上面定义的内容:&#xA;&#xA;DBHost=localhost    #指的是访问本机数据库&#xA;DBName=zabbixdb    #zabbix的数据库名字&#xA;DBUser=zabbixuser    #访问数据库的用户名&#xA;DBPassword=zabbixpass    #访问数据库的密码&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;编辑php环境配置文件&#34;&gt;&lt;span&gt;编辑PHP环境配置文件&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bc%96%e8%be%91php%e7%8e%af%e5%a2%83%e9%85%8d%e7%bd%ae%e6%96%87%e4%bb%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;vi  /etc/httpd/conf.d/zabbix.conf&#xA;&#xA;对应修改内容如下&#xA;&#xA;php_value max_execution_time 300&#xA;php_value memory_limit 128M&#xA;php_value post_max_size 16M&#xA;php_value upload_max_filesize 2M&#xA;php_value max_input_time 300&#xA;php_value date.timezone Asia/Shanghai&#xA;其实zabbix都设置好了,只有最后一项需要你改动下,去掉前面的#号&#xA;&#xA;时区设置成Asia/Shanghai&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;iptables防火墙设置&#34;&gt;&lt;span&gt;iptables防火墙设置&lt;/span&gt;&#xA;  &lt;a href=&#34;#iptables%e9%98%b2%e7%81%ab%e5%a2%99%e8%ae%be%e7%bd%ae&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT&#xA;iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 10050 -j ACCEPT&#xA;iptables -A INPUT -m state --state NEW -m udp -p udp --dport 10050 -j ACCEPT&#xA;iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 10051 -j ACCEPT&#xA;iptables -A INPUT -m state --state NEW -m udp -p udp --dport 10051 -j ACCEPT&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;设置所需服务自动启动httpdmysqldsnmpdsnmptrapdzabbix-agentzabbix-server&#34;&gt;&lt;span&gt;设置所需服务自动启动:(httpd,mysqld,snmpd,snmptrapd,zabbix-agent,zabbix-server)&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%ae%be%e7%bd%ae%e6%89%80%e9%9c%80%e6%9c%8d%e5%8a%a1%e8%87%aa%e5%8a%a8%e5%90%af%e5%8a%a8httpdmysqldsnmpdsnmptrapdzabbix-agentzabbix-server&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;chkconfig httpd on ; service httpd start&#xA;chkconfig mysqld on ; service mysqld start&#xA;chkconfig snmpd on ; service snmpd start&#xA;chkconfig snmptrapd on ; service snmptrapd start&#xA;chkconfig zabbix-agent on ; service zabbix-agent start&#xA;chkconfig zabbix-server on  ; service zabbix-server start&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;浏览器访问安装http1921680109zabbix&#34;&gt;&lt;span&gt;浏览器访问安装：http://192.168.0.109/zabbix/&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%b5%8f%e8%a7%88%e5%99%a8%e8%ae%bf%e9%97%ae%e5%ae%89%e8%a3%85http1921680109zabbix&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;h1 class=&#34;heading-element&#34; id=&#34;客户端&#34;&gt;&lt;span&gt;客户端&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%a2%e6%88%b7%e7%ab%af&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;[root@localhost ~]# rpm -ivh http://repo.zabbix.com/zabbix/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm&#xA;[root@localhost ~]# yum install -y zabbix-agent&#xA;[root@localhost ~]# vi /etc/zabbix/zabbix_agentd.conf&#xA;Server=127.0.0.1                     #改为zabbix服务器IP，被动模式。&#xA;ServerActive=127.0.0.1               #改为zabbix服务器IP，主动模式。&#xA;Hostname=Zabbix server               #主机名，尽量和主机名一致。&#xA;[root@localhost ~]# /etc/init.d/zabbix-agent start&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>使用UltraISO制作U盘启动盘</title>
      <link>https://blog.mulinux.com/en/%E4%BD%BF%E7%94%A8ultraiso%E5%88%B6%E4%BD%9Cu%E7%9B%98%E5%90%AF%E5%8A%A8%E7%9B%98/</link>
      <pubDate>Tue, 11 Aug 2015 11:38:23 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E4%BD%BF%E7%94%A8ultraiso%E5%88%B6%E4%BD%9Cu%E7%9B%98%E5%90%AF%E5%8A%A8%E7%9B%98/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;1、鼠标右键“以管理员身份运行”UltraISO图标&lt;/p&gt;&#xA;&lt;p&gt;2、打开UltraISO的窗口后依次点击左上角的“文件”-“打开”&lt;/p&gt;&#xA;&lt;p&gt;3、浏览到存放镜像文件的目录，选中该目标文件，点击“打开”按钮&lt;/p&gt;</description>
    </item>
    <item>
      <title>Centos6搭建本地YUM源</title>
      <link>https://blog.mulinux.com/en/centos6-yumresource/</link>
      <pubDate>Fri, 17 Jul 2015 13:28:21 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/centos6-yumresource/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h1 class=&#34;heading-element&#34; id=&#34;使用光盘或者iso一般用于没有通外网时&#34;&gt;&lt;span&gt;使用光盘或者iso（一般用于没有通外网时）&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e4%bd%bf%e7%94%a8%e5%85%89%e7%9b%98%e6%88%96%e8%80%85iso%e4%b8%80%e8%88%ac%e7%94%a8%e4%ba%8e%e6%b2%a1%e6%9c%89%e9%80%9a%e5%a4%96%e7%bd%91%e6%97%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h1&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;挂载光盘&#34;&gt;&lt;span&gt;挂载光盘&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e6%8c%82%e8%bd%bd%e5%85%89%e7%9b%98&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;mount -t iso9660 -o loop /dev/cdrom /media/cdrom    #光盘插入光驱后操作&#xA;mount -o loop /CentOS_6.4_Final.iso /media/cdrom    #挂载本地iso到cdrom&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;删除etcyumreposd目录所有的repo文件&#34;&gt;&lt;span&gt;删除/etc/yum.repos.d目录所有的repo文件&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%88%a0%e9%99%a4etcyumreposd%e7%9b%ae%e5%bd%95%e6%89%80%e6%9c%89%e7%9a%84repo%e6%96%87%e4%bb%b6&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;&lt;code&gt;rm -rf /etc/yum.repos.d/*&lt;/code&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>iisapp通过pid查找对应的网站</title>
      <link>https://blog.mulinux.com/en/use-iisapp/</link>
      <pubDate>Thu, 18 Jun 2015 13:17:02 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/use-iisapp/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;先在任务管理器查看哪个pid占用资源过大，找出pid&lt;/p&gt;&#xA;&lt;p&gt;iisapp /p pid #查询对应的网站&lt;/p&gt;&#xA;&lt;p&gt;查找到后再进行下一步的操作。继续查找问题或者关闭该站点以免影响其他站点。&lt;/p&gt;</description>
    </item>
    <item>
      <title>建站常用</title>
      <link>https://blog.mulinux.com/en/%E5%BB%BA%E7%AB%99%E5%B8%B8%E7%94%A8/</link>
      <pubDate>Mon, 25 May 2015 09:56:06 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E5%BB%BA%E7%AB%99%E5%B8%B8%E7%94%A8/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;环境部署&#34;&gt;&lt;span&gt;环境部署&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%8e%af%e5%a2%83%e9%83%a8%e7%bd%b2&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;OneinStack: &lt;a href=&#34;https://www.luanzun.com/oneinstack.com&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;www.luanzun.com/oneinstack.com&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;BaoTa: &lt;a href=&#34;https://www.bt.cn&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;www.bt.cn&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;采集器&#34;&gt;&lt;span&gt;采集器&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%87%87%e9%9b%86%e5%99%a8&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;火车头&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;movie&#34;&gt;&lt;span&gt;movie&lt;/span&gt;&#xA;  &lt;a href=&#34;#movie&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;maccms&lt;/li&gt;&#xA;&lt;li&gt;maccms-wiki &lt;a href=&#34;https://github.com/magicblack/maccms10/wiki&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;https://github.com/magicblack/maccms10/wiki&lt;/a&gt;&lt;/li&gt;&#xA;&lt;li&gt;模板：https://www.mytheme.cn/maccms/52.html&lt;/li&gt;&#xA;&lt;li&gt;海洋CMS&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;统计&#34;&gt;&lt;span&gt;统计&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bb%9f%e8%ae%a1&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;ul&gt;&#xA;&lt;li&gt;不蒜子：http://ibruce.info/&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>PHP&#43;IIS6的配置.md</title>
      <link>https://blog.mulinux.com/en/php-iis6/</link>
      <pubDate>Tue, 12 May 2015 10:22:57 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/php-iis6/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装&#34;&gt;&lt;span&gt;安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;1、下载php vc6或者vc9的NTS版本，无需安装，解压即可。&lt;/p&gt;</description>
    </item>
    <item>
      <title>LAMP环境下PHP上传文件大小限制解决方法</title>
      <link>https://blog.mulinux.com/en/apache-php-set-maxfilesize/</link>
      <pubDate>Fri, 08 May 2015 09:32:03 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/apache-php-set-maxfilesize/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;在phpini里面调整如下行&#34;&gt;&lt;span&gt;在php.ini里面调整如下行&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%9c%a8phpini%e9%87%8c%e9%9d%a2%e8%b0%83%e6%95%b4%e5%a6%82%e4%b8%8b%e8%a1%8c&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;upload_max_filesize = 20M &#xA;post_max_size = 10M &#xA;memory_limit = 20M&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;确认上传的 &lt;form&gt; 里没有类似下面的这行&lt;input type=&#34;hidden&#34; name=&#34;MAX_FILE_SIZE&#34; value=&#34;500000&#34;&gt;这样也是限制上传大小用的。&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lamp Linux&#43;apache&#43;mysql&#43;php</title>
      <link>https://blog.mulinux.com/en/lamp-linux-apache-mysql-php/</link>
      <pubDate>Sat, 11 Apr 2015 14:27:47 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/lamp-linux-apache-mysql-php/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;系统及软件版本：linux 6.5_x64    apache2.2.31    php5.3.28    mysql5.1.73&lt;/p&gt;&#xA;&lt;p&gt;Mysql安装-请参考文档：Mysql5.1二进制免编译安装&lt;/p&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;apache安装&#34;&gt;&lt;span&gt;Apache安装&lt;/span&gt;&#xA;  &lt;a href=&#34;#apache%e5%ae%89%e8%a3%85&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[root@lamp mysql]# cd /usr/local/src/&#xA;[root@lamp src]# wget http://mirrors.sohu.com/apache/httpd-2.2.31.tar.gz&#xA;[root@lamp src]# tar zxvf httpd-2.2.31.tar.gz&#xA;[root@lamp httpd-2.2.31]# yum install -y gcc pcre pcre-devel apr apr-devel zlib-devel&#xA;[root@lamp httpd-2.2.31]# ./configure --prefix=/usr/local/apache2 --with-included-apr --enable-so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --with-pcre&#xA;[root@lamp httpd-2.2.31]# /usr/local/apache2/bin/apachectl start&#xA;[root@lamp httpd-2.2.31]# ps aux | grep httpd&#xA;[root@lamp httpd-2.2.31]# netstat -lnp | grep 80&#xA;[root@lamp httpd-2.2.31]# /usr/local/apache2/bin/apachectl graceful #重新加载服务&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装php&#34;&gt;&lt;span&gt;安装php&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85php&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;[root@lamp src]# wget &lt;a href=&#34;http://cn2.php.net/distributions/php-5.3.28.tar.gz&#34; target=&#34;_blank&#34; rel=&#34;external nofollow noopener noreferrer&#34;&gt;http://cn2.php.net/distributions/php-5.3.28.tar.gz&lt;/a&gt;&#xA;[root@lamp src]# tar zxvf php-5.3.28.tar.gz&#xA;[root@lamp php-5.3.28]# yum install -y epel-release&#xA;[root@lamp php-5.3.28]# yum install -y perl libjpeg-devel libxml2-devel openssl openssl-devel bzip2 bzip2-devel libpng libpng-devel freetype freetype-devel libmcrypt-devel&#xA;[root@lamp php-5.3.28]# ./configure   &amp;ndash;prefix=/usr/local/php   &amp;ndash;with-apxs2=/usr/local/apache2/bin/apxs   &amp;ndash;with-config-file-path=/usr/local/php/etc   &amp;ndash;with-mysql=/usr/local/mysql   &amp;ndash;with-libxml-dir   &amp;ndash;with-gd   &amp;ndash;with-jpeg-dir   &amp;ndash;with-png-dir   &amp;ndash;with-freetype-dir   &amp;ndash;with-iconv-dir   &amp;ndash;with-zlib-dir   &amp;ndash;with-bz2   &amp;ndash;with-openssl   &amp;ndash;with-mcrypt   &amp;ndash;enable-soap   &amp;ndash;enable-gd-native-ttf   &amp;ndash;enable-mbstring   &amp;ndash;enable-sockets   &amp;ndash;enable-exif   &amp;ndash;disable-ipv6&#xA;[root@lamp php-5.3.28]# make &amp;amp;&amp;amp; make install&#xA;[root@lamp php-5.3.28]# cp php.ini-production /usr/local/php/etc/php.ini&#xA;[root@lamp php-5.3.28]# ls /usr/local/apache2/modules/libphp5.so&lt;/p&gt;</description>
    </item>
    <item>
      <title>Lnmp Linux&#43;nginx&#43;mysql&#43;php</title>
      <link>https://blog.mulinux.com/en/lnmp-linux-nginx-mysql-php/</link>
      <pubDate>Sun, 29 Mar 2015 14:24:26 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/lnmp-linux-nginx-mysql-php/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;系统及软件版本：linux 6.5_x64    nginx1.6.2    php5.4.37    mysql5.1.73&lt;/p&gt;&#xA;&lt;p&gt;首先安装Mysql-请参考文档：Mysql5.1二进制免编译安装&lt;/p&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装php5437&#34;&gt;&lt;span&gt;安装PHP5.4.37&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85php5437&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[root@lnmp mysql]# cd /usr/local/src/&#xA;[root@lnmp src]# wget http://cn2.php.net/distributions/php-5.4.37.tar.bz2&#xA;[root@lnmp src]# tar jxf php-5.4.37.tar.bz2&#xA;[root@lnmp src]# useradd -s /sbin/nologin php-fpm&#xA;[root@lnmp php-5.4.37]# cd php-5.4.37&#xA;[root@lnmp php-5.4.37]# yum install -y epel-release&#xA;[root@lnmp php-5.4.37]# yum install -y gcc libxml2-devel curl-devel libjpeg-devel libpng libpng-devel freetype freetype-devel libmcrypt-devel&#xA;[root@lnmp php-5.4.37]# ./configure --prefix=/usr/local/php   --with-config-file-path=/usr/local/php/etc  --enable-fpm   --with-fpm-user=php-fpm  --with-fpm-group=php-fpm   --with-mysql=/usr/local/mysql  --with-mysql-sock=/tmp/mysql.sock  --with-libxml-dir  --with-gd   --with-jpeg-dir   --with-png-dir   --with-freetype-dir  --with-iconv-dir   --with-zlib-dir   --with-mcrypt   --enable-soap   --enable-gd-native-ttf   --enable-ftp  --enable-mbstring  --enable-exif    --disable-ipv6     --with-curl&#xA;[root@lnmp php-5.4.37]# make &amp;amp;&amp;amp; make install&#xA;[root@lnmp php-5.4.37]# cp php.ini-production /usr/local/php/etc/php.ini&#xA;[root@lnmp php-5.4.37]# cp /usr/local/src/php-5.4.37/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm&#xA;[root@lnmp php-5.4.37]# cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf&#xA;[root@lnmp php-5.4.37]# chmod 755 /etc/init.d/php-fpm&#xA;[root@lnmp php-5.4.37]# chkconfig --add php-fpm&#xA;[root@lnmp php-5.4.37]# service php-fpm start&#xA;[root@lnmp php-5.4.37]# chkconfig php-fpm on&#xA;[root@lnmp php-5.4.37]# ps aux | grep php-fpm&#xA;[root@lnmp php-5.4.37]# netstat -lnp | grep 9000&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;安装nginx&#34;&gt;&lt;span&gt;安装Nginx&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85nginx&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[root@lnmp php-5.4.37]# cd /usr/local/src/&#xA;[root@lnmp src]# wget http://nginx.org/download/nginx-1.6.2.tar.gz&#xA;[root@lnmp src]# tar zxvf nginx-1.6.2.tar.gz&#xA;[root@lnmp nginx-1.6.2]# cd nginx-1.6.2&#xA;[root@lnmp nginx-1.6.2]# yum install -y pcre-devel&#xA;[root@lnmp nginx-1.6.2]# ./configure   --prefix=/usr/local/nginx   --with-pcre&#xA;[root@lnmp nginx-1.6.2]# make &amp;amp;&amp;amp; make install&#xA;[root@lnmp nginx-1.6.2]# /usr/local/nginx/sbin/nginx&#xA;[root@lnmp nginx-1.6.2]# ps aux | grep nginx&#xA;[root@lnmp nginx-1.6.2]# vi /usr/local/nginx/conf/nginx.conf&#x9;#把下面的配置，前面的#删除&#xA;        location ~ \.php$ {&#xA;            root           html;&#xA;            fastcgi_pass   127.0.0.1:9000;&#xA;            fastcgi_index  index.php;&#xA;            fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx/html$fastcgi_script_name;&#x9;#修改网站根目录为/usr/local/nginx/html&#xA;            include        fastcgi_params;&#xA;        }&#xA;[root@lnmp nginx-1.6.2]# /usr/local/nginx/sbin/nginx -t&#xA;[root@lnmp nginx-1.6.2]# /usr/local/nginx/sbin/nginx -s reload&#xA;[root@lnmp nginx-1.6.2]# cat /usr/local/nginx/html/info.php&#xA;&amp;lt;?php&#xA;phpinfo();&#xA;?&amp;gt;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Mysql5.1二进制免编译安装</title>
      <link>https://blog.mulinux.com/en/mysql5.1-install/</link>
      <pubDate>Fri, 17 Oct 2014 13:57:34 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/mysql5.1-install/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;安装记录&#34;&gt;&lt;span&gt;安装记录&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%ae%89%e8%a3%85%e8%ae%b0%e5%bd%95&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;cd /usr/local/src/&#xA;wget http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.73-linux-x86_64-glibc23.tar.gz&#xA;yum install -y wget&#xA;wget http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.73-linux-x86_64-glibc23.tar.gz&#xA;tar zxvf /usr/local/src/mysql-5.1.73-linux-x86_64-glibc23.tar.gz&#xA;mv mysql-5.1.73-linux-x86_64-glibc23 /usr/local/mysql&#xA;useradd -s /sbin/nologin -M mysql&#xA;cd /usr/local/mysql/&#xA;mkdir -p /data/mysql&#xA;chown -R mysql:mysql /data/mysql&#xA;./scripts/mysql_install_db --user=mysql --datadir=/data/mysql&#xA;出现两个ok说明初始化成功，也可以echo $?确认一下。&#xA;cp support-files/my-large.cnf /etc/my.cnf&#xA;cp support-files/mysql.server /etc/init.d/mysqld&#xA;chmod 755 /etc/init.d/mysqld&#xA;vi /etc/init.d/mysqld&#x9;#datadir=/data/mysql basedir=/usr/local/mysql&#xA;basedir=/usr/local/mysql&#xA;datadir=/data/mysql&#xA;chkconfig --add mysqld&#xA;chkconfig mysqld on&#xA;service mysqld start&#xA;&#xA;设置密码：mysqladmin -uroot password &amp;#39;yourpass&amp;#39;&#xA;更改密码：mysqladmin -uroot password &amp;#39;newpass&amp;#39;&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>交换机重启后导致centos路由丢失</title>
      <link>https://blog.mulinux.com/en/%E4%BA%A4%E6%8D%A2%E6%9C%BA%E9%87%8D%E5%90%AF%E5%90%8E%E5%AF%BC%E8%87%B4centos%E8%B7%AF%E7%94%B1%E4%B8%A2%E5%A4%B1/</link>
      <pubDate>Tue, 20 May 2014 13:25:35 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/%E4%BA%A4%E6%8D%A2%E6%9C%BA%E9%87%8D%E5%90%AF%E5%90%8E%E5%AF%BC%E8%87%B4centos%E8%B7%AF%E7%94%B1%E4%B8%A2%E5%A4%B1/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;编辑etcsysconfigstatic-routes&#34;&gt;&lt;span&gt;编辑/etc/sysconfig/static-routes&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e7%bc%96%e8%be%91etcsysconfigstatic-routes&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;没有static-routes的话就手动建立一个这样的文件&lt;/p&gt;</description>
    </item>
    <item>
      <title>H3C S2100 S3100网络配置</title>
      <link>https://blog.mulinux.com/en/h3c-s2100-s3100%E7%BD%91%E7%BB%9C%E9%85%8D%E7%BD%AE/</link>
      <pubDate>Sat, 08 Feb 2014 12:32:55 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/h3c-s2100-s3100%E7%BD%91%E7%BB%9C%E9%85%8D%E7%BD%AE/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;初始配置，还原交换机出厂设置命令：reset saved-configuration&lt;/p&gt;&#xA;&lt;h2 class=&#34;heading-element&#34; id=&#34;设置交换机名称&#34;&gt;&lt;span&gt;设置交换机名称&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e8%ae%be%e7%bd%ae%e4%ba%a4%e6%8d%a2%e6%9c%ba%e5%90%8d%e7%a7%b0&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;&amp;lt;H3C&amp;gt;&#xA; Auto-Configuration has finished!&#xA;&amp;lt;H3C&amp;gt;sys&#xA;System View: return to User View with Ctrl&amp;#43;Z.&#xA;[H3C]&#xA;[H3C]sysname Sh-A1-192.168.0.109 # 设置交换机名称&#xA;[Sh-A1-192.168.0.109]&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;配置交换机的管理ip和网关&#34;&gt;&lt;span&gt;配置交换机的管理ip和网关&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%85%8d%e7%bd%ae%e4%ba%a4%e6%8d%a2%e6%9c%ba%e7%9a%84%e7%ae%a1%e7%90%86ip%e5%92%8c%e7%bd%91%e5%85%b3&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;Sh-A1-192.168.0.109]int vlan 1&#xA;[Sh-A1-192.168.0.109-Vlan-interface1]ip ad&#xA;[Sh-A1-192.168.0.109-Vlan-interface1]ip address 192.168.0.109 255.255.255.192&#xA;[Sh-A1-192.168.0.109-Vlan-interface1]q&#xA;[Sh-A1-192.168.0.109]ip route-static 0.0.0.0 0.0.0.0 192.168.0.109&#xA;[Sh-A1-192.168.0.109]&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;配置登陆用户密码管理级别&#34;&gt;&lt;span&gt;配置登陆用户，密码，管理级别&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e9%85%8d%e7%bd%ae%e7%99%bb%e9%99%86%e7%94%a8%e6%88%b7%e5%af%86%e7%a0%81%e7%ae%a1%e7%90%86%e7%ba%a7%e5%88%ab&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[Sh-A1-192.168.0.109]local-user edong&#xA;New local user added.&#xA;[Sh-A1-192.168.0.109-luser-edong]password cipher &amp;lt;密码串&amp;gt;&#xA;[Sh-A1-192.168.0.109-luser-edong]service-type telnet ssh level 3&#xA;&#xA;[Sh-A1-192.168.0.109]user-interface vty 0 4&#xA;[Sh-A1-192.168.0.109-ui-vty0-4]authentication-mode scheme&#xA;[Sh-A1-192.168.0.109-ui-vty0-4]protocol inbound telnet&lt;/code&gt;&lt;/pre&gt;&lt;h2 class=&#34;heading-element&#34; id=&#34;snmp-团体号设置该设置用于监控流量&#34;&gt;&lt;span&gt;SNMP 团体号设置，该设置用于监控流量&lt;/span&gt;&#xA;  &lt;a href=&#34;#snmp-%e5%9b%a2%e4%bd%93%e5%8f%b7%e8%ae%be%e7%bd%ae%e8%af%a5%e8%ae%be%e7%bd%ae%e7%94%a8%e4%ba%8e%e7%9b%91%e6%8e%a7%e6%b5%81%e9%87%8f&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;[Sh-A1-192.168.0.109]snmp-agent community read SnmpSwitchUser #后面的团体号可以任意设置，这个地方统一设置为EDSnmpSwitchUser&#xA;[Sh-A1-192.168.0.109]snmp-agent sys-info version all #加所有版本&lt;/code&gt;&lt;/pre&gt;</description>
    </item>
    <item>
      <title>Wordpress Wp Super Cache</title>
      <link>https://blog.mulinux.com/en/wordpress-wp-super-cache/</link>
      <pubDate>Sun, 19 May 2013 13:50:40 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/wordpress-wp-super-cache/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;首先进入后台—&amp;gt;插件—-&amp;gt;安装插件—-&amp;gt;在搜索框里输入wp super cache，找到第一个安装并启用。&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;高级里的设置开启Gzip。&lt;/li&gt;&#xA;&lt;li&gt;开启预缓存&lt;/li&gt;&#xA;&lt;/ul&gt;</description>
    </item>
    <item>
      <title>WordPress建站初期注意的几个点</title>
      <link>https://blog.mulinux.com/en/wordpress%E5%BB%BA%E7%AB%99%E5%88%9D%E6%9C%9F%E6%B3%A8%E6%84%8F%E7%9A%84%E5%87%A0%E4%B8%AA%E7%82%B9/</link>
      <pubDate>Sat, 18 May 2013 13:43:46 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/wordpress%E5%BB%BA%E7%AB%99%E5%88%9D%E6%9C%9F%E6%B3%A8%E6%84%8F%E7%9A%84%E5%87%A0%E4%B8%AA%E7%82%B9/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;h2 class=&#34;heading-element&#34; id=&#34;固定链接的选择&#34;&gt;&lt;span&gt;固定链接的选择&lt;/span&gt;&#xA;  &lt;a href=&#34;#%e5%9b%ba%e5%ae%9a%e9%93%be%e6%8e%a5%e7%9a%84%e9%80%89%e6%8b%a9&#34; class=&#34;heading-mark&#34;&gt;&#xA;    &lt;svg class=&#34;octicon octicon-link&#34; viewBox=&#34;0 0 16 16&#34; version=&#34;1.1&#34; width=&#34;16&#34; height=&#34;16&#34; aria-hidden=&#34;true&#34;&gt;&lt;path d=&#34;m7.775 3.275 1.25-1.25a3.5 3.5 0 1 1 4.95 4.95l-2.5 2.5a3.5 3.5 0 0 1-4.95 0 .751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018 1.998 1.998 0 0 0 2.83 0l2.5-2.5a2.002 2.002 0 0 0-2.83-2.83l-1.25 1.25a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042Zm-4.69 9.64a1.998 1.998 0 0 0 2.83 0l1.25-1.25a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-1.25 1.25a3.5 3.5 0 1 1-4.95-4.95l2.5-2.5a3.5 3.5 0 0 1 4.95 0 .751.751 0 0 1-.018 1.042.751.751 0 0 1-1.042.018 1.998 1.998 0 0 0-2.83 0l-2.5 2.5a1.998 1.998 0 0 0 0 2.83Z&#34;&gt;&lt;/path&gt;&lt;/svg&gt;&#xA;  &lt;/a&gt;&#xA;&lt;/h2&gt;&lt;p&gt;首先进入后台&lt;/p&gt;</description>
    </item>
    <item>
      <title>Wordpress后台访问限制</title>
      <link>https://blog.mulinux.com/en/wordpress%E5%90%8E%E5%8F%B0%E8%AE%BF%E9%97%AE%E9%99%90%E5%88%B6/</link>
      <pubDate>Fri, 17 May 2013 13:41:17 +0800</pubDate>
      <guid>https://blog.mulinux.com/en/wordpress%E5%90%8E%E5%8F%B0%E8%AE%BF%E9%97%AE%E9%99%90%E5%88%B6/</guid>
      <category domain="https://blog.mulinux.com/en/categories/operations/">Operations</category>
      <description>&lt;p&gt;wordpress的后台安全问题解决方法有很多，如果是购买vps或者云服务器自已搭建环境的朋友，可以通过apache或者nginx针对目录做访问上的限制。这里介绍一下以前自己用WP时在网上查找并实践出来的一些经验。&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
