语法高亮,滚动条美化,设置页面调整

This commit is contained in:
fofolee
2019-04-19 02:41:09 +08:00
parent 1e8f76c000
commit 359d29ee0b
1590 changed files with 12328 additions and 11441 deletions

View File

@@ -3,9 +3,9 @@
<h2 id="补充说明">补充说明</h2>
<p><strong>vgreduce命令</strong> 通过删除LVM卷组中的物理卷来减少卷组容量。不能删除LVM卷组中剩余的最后一个物理卷。</p>
<h3 id="语法">语法</h3>
<pre><code>vgreduce(选项)(参数)</code></pre>
<pre><code class="language-bash">vgreduce(选项)(参数)</code></pre>
<h3 id="选项">选项</h3>
<pre><code>-a如果命令行中没有指定要删除的物理卷则删除所有的空物理卷
<pre><code class="language-bash">-a如果命令行中没有指定要删除的物理卷则删除所有的空物理卷
--removemissing删除卷组中丢失的物理卷使卷组恢复正常状态。</code></pre>
<h3 id="参数">参数</h3>
<ul>
@@ -14,7 +14,7 @@
</ul>
<h3 id="实例">实例</h3>
<p>使用vgreduce命令从卷组“vg2000”中移除物理卷<code>/dev/sdb2</code>。在命令行中输入下面的命令:</p>
<pre><code>[root@localhost ~]# vgreduce vg2000 /dev/sdb2 #将物理卷&quot;/dev/sdb2&quot;从卷组&quot;vg2000&quot;中删除</code></pre>
<pre><code class="language-bash">[root@localhost ~]# vgreduce vg2000 /dev/sdb2 #将物理卷&quot;/dev/sdb2&quot;从卷组&quot;vg2000&quot;中删除</code></pre>
<p>输出信息如下:</p>
<pre><code>Removed &quot;/dev/sdb2&quot; from volume group &quot;vg2000&quot;</code></pre>
<pre><code class="language-bash">Removed &quot;/dev/sdb2&quot; from volume group &quot;vg2000&quot;</code></pre>
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->