====== Linux 燒錄軟體 k3b 安裝 ======
在最近安裝 CentOS 5 之後, 發現標準安裝程序安裝之後, 就可以達成 CD/DVD 燒錄的功能, 已不需要這些複雜的安裝程序. --- //[[tryweb@ichiayi.com|蔡宗融]] 2007/10/29 09:46//
其實只須要執行 **yum install k3b** 就可以安裝好, 但是這樣只有預設功能, 並無法燒錄 Vedio CD/DVD. 必須額外安裝其他套件才可支援.
===== - 支援 Vedio CD 套件 =====
* libcdio -- http://www.gnu.org/software/libcdio/
* vcdimage -- http://www.vcdimager.org/
==== - libcdio 安裝程序 ====
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
==== - vcdimage 安裝程序 ====
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
===== - 支援 Vedio DVD 套件 =====
*
===== - 加快燒錄速度 =====
==== - 設定 DVD-RW 參數 ====
假設 DVD-RW 是在 /dev/hda
=== - 看設定前參數 ===
hdparm -v /dev/hda
[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
=== - 設定參數 ===
hdparm -d1 -c1 -a8 -u1 /dev/hda
[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)
=== - 看設定後參數 ===
hdparm -v /dev/hda
[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
===== 參考資料 =====
* [[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_安裝}}