OK, the Sony Dru-820A is known, this is good.....
k3b is old and should be updated (lots of bug fixes and other improvements), I suspect the cdr-tools and dvd+rw-tools (this should be updated) packages are also old and should be updated. So a quick check is to compare your tools to mine, and mine are for x86_64 and it is the version number that really matters;
Code:
$ rpm -qa --queryformat="%{n}-%{v}-%{r}.%{arch}.rpm\n" 'k3b' 'cdr*' 'cdp*' 'dvd+rw*' | sort
My output;
cdparanoia-alpha9.8-27.1.x86_64.rpm
cdparanoia-devel-alpha9.8-27.1.x86_64.rpm
cdparanoia-libs-alpha9.8-27.1.i386.rpm
cdparanoia-libs-alpha9.8-27.1.x86_64.rpm
cdrdao-1.2.1-1.1.x86_64.rpm
cdrecord-2.01.01.0.a03-3.x86_64.rpm
cdrecord-devel-2.01.01.0.a03-3.x86_64.rpm
dvd+rw-tools-6.1-6.2.1.x86_64.rpm
k3b-0.12.15-1.x86_64.rpm
Where to get the updated versions.......
You might want to grab the binary k3b-0.12.14 packages from the k3b-redhat site instead of building your own (also have the latest KDE rpms and other updates available);
http://kde-redhat.sourceforge.net/
The updated dvd+rw-tools package, this requires a little bit of work to install as an rpm package;
http://fy.chalmers.se/~appro/linux/DVD+RW/tools/?S=A
get dvd+rw-tools-6.1.tar.gz and place the file in /usr/src/redhat/SOURCES then build the binary using spec file following (place the file in /usr/src/redhat/SPCES);
rpmbuild -ba dvd+rw-tools.spec
The cdrtools packages, this also requires a small bit of work;
http://download.fedora.redhat.com/pu...lopment/SRPMS/
get cdrtools-2.01.01.0.a03-3.src.rpm and cdparanoia-alpha9.8-27.1.src.rpm then build the binaries by something like;
rpmbuild --rebuild --recompile cdrtools-2.01.01.0.a03-3.src.rpm
Do the same for the cdparanoia-alpha9.8-27.1.src.rpm package.
The cdrdao-1.2.1-1.src.rpm is optional (but nice to have) the same build option applies.
As promised the dvd+rw-tools.spec file, modified for redhat based systems from the orginal spec file included in the unpacked source;
Code:
Summary: Toolchain to master DVD+RW/+R media
Name: dvd+rw-tools
Version: 6.1
Release: 6.2.1
License: GPL
Group: Applications/Multimedia
Source: http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-%{version}.tar.gz
#Source1: index.html
#Patch: dvd+rw-tools-5.17.4.8.6.manpatch
#Patch10: dvd+rw-tools-5.21.4.10.8-excl.patch
URL: http://fy.chalmers.se/~appro/linux/DVD+RW/
Requires: mkisofs >= 2.0
BuildRoot: %{_tmppath}/%{name}-root
BuildRequires: kernel-headers
%description
Collection of tools to master DVD+RW/+R media. For further
information see http://fy.chalmers.se/~appro/linux/DVD+RW/.
%prep
%setup -q -n %{name}-%{version}
#%patch -p1 -b .manpatch
#%patch10 -p1 -b .excl
%build
export CFLAGS="$RPM_OPT_FLAGS"
export CXXFLAGS="$RPM_OPT_FLAGS"
make
# cp %SOURCE1 index.html
%install
rm -rf %{buildroot}
%makeinstall
# mkdir -p %{buildroot}%{_prefix}/bin
mkdir -p %{buildroot}%{_docdir}/%{name}-%{version}-%{release}
# mkdir -p %{buildroot}%{_mandir}/man1
# cd %{_builddir}/%{name}-%{version}
# cp -a growisofs dvd+rw-format dvd+rw-booktype \
# %{buildroot}%{_prefix}/bin
#cp -a index.html \
# %{buildroot}%{_docdir}/%{name}-%{version}-%{release}
# cp -a growisofs.1* %{buildroot}%{_mandir}/man1
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root)
%{_prefix}/bin/*
%doc %{_docdir}/%{name}-%{version}-%{release}
%{_mandir}/man1/growisofs.1*
%changelog
* Fri Feb 24 2006 Andy Polyakov <appro@fy.chalmers.se>
- Initial packaging.