差異處

這裏顯示兩個版本的差異處。

連向這個比對檢視

下次修改
前次修改
tech:k3b [2007/02/10 10:13] – 建立 jonathantech:k3b [2008/08/21 07:06] (目前版本) jonathan
行 1: 行 1:
 +====== Linux 燒錄軟體 k3b 安裝 ======
 +<note warning>
 +在最近安裝 CentOS 5 之後, 發現標準安裝程序安裝之後, 就可以達成 CD/DVD 燒錄的功能, 已不需要這些複雜的安裝程序.  --- //[[[email protected]|蔡宗融]] 2007/10/29 09:46//
 +</note>
  
 +其實只須要執行 **yum install k3b** 就可以安裝好, 但是這樣只有預設功能, 並無法燒錄 Vedio CD/DVD. 必須額外安裝其他套件才可支援.
 +
 +===== - 支援 Vedio CD 套件 =====
 +  * libcdio -- http://www.gnu.org/software/libcdio/
 +  * vcdimage -- http://www.vcdimager.org/
 +==== - libcdio 安裝程序 ====
 +<code>
 +su - root
 +mkdir source
 +cd source
 +wget http://ftp.gnu.org/gnu/libcdio/libcdio-0.78.tar.gz
 +tar -zxvf libcdio-0.78.tar.gz
 +cd libcdio-0.78
 +./configure
 +make
 +make install
 +</code>
 +
 +==== - vcdimage 安裝程序 ====
 +<code>
 +su - root
 +cd source
 +wget http://www.vcdimager.org/pub/vcdimager/vcdimager-0.7/vcdimager-0.7.23.tar.gz
 +tar -zxvf vcdimager-0.7.23.tar.gz
 +cd vcdimager-0.7.23
 +export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
 +./configure
 +make
 +make install
 +</code>
 +
 +===== - 支援 Vedio DVD 套件 =====
 +  * 
 +
 +===== - 加快燒錄速度 =====
 +==== - 設定 DVD-RW 參數 ====
 +假設 DVD-RW 是在 /dev/hda
 +
 +=== - 看設定前參數 ===
 +<code>
 +hdparm -v /dev/hda
 +</code>
 +<file>
 +[root@pd920 ~]# hdparm -v /dev/hda
 +
 +/dev/hda:
 + HDIO_GET_MULTCOUNT failed: Invalid argument
 + IO_support    0 (default 16-bit)
 + unmaskirq    =  0 (off)
 + using_dma    =  1 (on)
 + keepsettings =  0 (off)
 + readonly      0 (off)
 + readahead    = 256 (on)
 + HDIO_GETGEO failed: Invalid argument
 +</file>
 +
 +=== - 設定參數 ===
 +<code>
 +hdparm -d1 -c1 -a8 -u1 /dev/hda
 +</code>
 +
 +<file>
 +[root@pd920 ~]# hdparm -d1 -c1 -a8 -u1 /dev/hda
 +
 +/dev/hda:
 + setting fs readahead to 8
 + setting 32-bit IO_support flag to 1
 + setting unmaskirq to 1 (on)
 + setting using_dma to 1 (on)
 + IO_support    1 (32-bit)
 + unmaskirq    =  1 (on)
 + using_dma    =  1 (on)
 + readahead    =  8 (on)
 +</file>
 +
 +=== - 看設定後參數 ===
 +<code>
 +hdparm -v /dev/hda
 +</code>
 +
 +<file>
 +[root@pd920 ~]# hdparm -v /dev/hda
 +
 +/dev/hda:
 + HDIO_GET_MULTCOUNT failed: Invalid argument
 + IO_support    1 (32-bit)
 + unmaskirq    =  1 (on)
 + using_dma    =  1 (on)
 + keepsettings =  0 (off)
 + readonly      0 (off)
 + readahead    =  8 (on)
 + HDIO_GETGEO failed: Invalid argument
 +</file>
 +
 +
 +===== 參考資料 =====
 +  * [[http://class.dfes.tpc.edu.tw/~tclin/modules/newbb/viewtopic.php?viewmode=flat&topic_id=22&forum=9&type= | 使用 k3b 燒錄 vcd (http://class.dfes.tpc.edu.tw/~tclin...)]]
 +  * [[http://k3b.plainblack.com/faq|k3b 官方網站 FAQ]]
 +
 +{{tag>linux k3b burncd draft draft_安裝}}