Linux 燒錄軟體 k3b 安裝

在最近安裝 CentOS 5 之後, 發現標準安裝程序安裝之後, 就可以達成 CD/DVD 燒錄的功能, 已不需要這些複雜的安裝程序. — 蔡宗融 2007/10/29 09:46

其實只須要執行 yum install k3b 就可以安裝好, 但是這樣只有預設功能, 並無法燒錄 Vedio CD/DVD. 必須額外安裝其他套件才可支援.

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
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

假設 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
  • tech/k3b.txt
  • 上一次變更: 2008/08/21 07:06
  • jonathan