uTools-Manuals/docs/linux/pvchange.html
2019-04-21 11:50:48 +08:00

19 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<h1 id="pvchange">pvchange</h1>
<p>修改物理卷属性</p>
<h2 id="补充说明">补充说明</h2>
<p><strong>pvchange命令</strong> 允许管理员改变物理卷的分配许可。如果物理卷出现故障可以使用pvchange命令禁止分配物理卷上的PE。</p>
<h3 id="语法">语法</h3>
<pre><code class="language-bash">pvchange(选项)(参数)</code></pre>
<h3 id="选项">选项</h3>
<pre><code class="language-bash">-u生成新的UUID
-x是否允许分配PE。</code></pre>
<h3 id="参数">参数</h3>
<p>物理卷:指定要修改属性的物理卷所对应的设备文件。</p>
<h3 id="实例">实例</h3>
<p>使用pvchange命令禁止分配指定物理卷上的PE。在命令行中输入下面的命令</p>
<pre><code class="language-bash">pvchange -x n /dev/sdb1 #禁止分配&quot;/dev/sdb1&quot;上的PE</code></pre>
<p>输出信息如下:</p>
<pre><code class="language-bash">Physical volume &quot;/dev/sdb1&quot; changed
1 physical volume changed / 0 physical volumes not changed</code></pre>
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->