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

34 lines
1.6 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="cdrecord">cdrecord</h1>
<p>Linux系统下光盘刻录功能命令</p>
<h2 id="补充说明">补充说明</h2>
<p><strong>cdrecord命令</strong> 用于Linux系统下光盘刻录它支持cd和DVD格式。linux下一般都带有cdrecord软件。</p>
<h3 id="语法">语法</h3>
<pre><code class="language-bash">cdrecord(选项)(参数)</code></pre>
<h3 id="选项">选项</h3>
<pre><code class="language-bash">-v显示刻录光盘的详细过程
-eject刻录完成后弹出光盘
speed=&lt;刻录倍速&gt;:指定光盘刻录的倍速;
dev=&lt;刻录机设备号&gt;:指定使用“-scanbus”参数扫描到的刻录机的设备号
-scanbus扫描系统中可用的刻录机。</code></pre>
<h3 id="参数">参数</h3>
<p>ISO文件指定刻录光盘使用的ISO映像文件。</p>
<h3 id="实例">实例</h3>
<p>查看系统所有 CD-R(w) 设备:</p>
<pre><code class="language-bash">cdrecord -scanbus
scsibus0:
0,0,0 0) *
0,1,0 1) *
0,2,0 2) *
0,3,0 3) &#39;HP &#39; &#39;CD-Writer+ 9200 &#39; &#39;1.0c&#39; Removable CD-ROM</code></pre>
<p>用iso文件刻录一张光盘</p>
<pre><code class="language-bash">cdrecord -v -eject speed=4 dev=0,3,0 backup.iso</code></pre>
<p>参数解释</p>
<ul>
<li>-v显示刻录光盘的详细过程</li>
<li>-eject刻完自动弹出光盘</li>
<li>speed=4 dev=0,3,0四速刻录到HP CD-writer设备上。</li>
</ul>
<p>擦写光驱:</p>
<pre><code class="language-bash">cdrecord --dev=0,3,0 --blank=fast</code></pre>
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->