source: multimedia/cdwriteutils/udftools.xml@ b1623c2

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since b1623c2 was b1623c2, checked in by Randy McMurchy <randy@…>, 20 years ago

more package patch renaming

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2376 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.8 KB
Line 
1<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
2 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../../general.ent">
4 %general-entities;
5
6 <!ENTITY udftools-download-http "http://prdownloads.sourceforge.net/linux-udf/udftools-&udftools-version;.tar.gz">
7 <!ENTITY udftools-download-ftp " ">
8 <!ENTITY udftools-size "236 Kb">
9 <!ENTITY udftools-buildsize "2.7 MB">
10 <!ENTITY udftools-time " ">
11]>
12
13<sect1 id="udftools" xreflabel="UDFtools-&udftools-version;">
14<?dbhtml filename="udftools.html"?>
15<title>UDFtools-&udftools-version;</title>
16
17<sect2>
18<title>Introduction to <application><acronym>UDF</acronym>tools</application></title>
19
20<para>The <application><acronym>UDF</acronym>tools</application> package
21contains utilities for creating and mounting
22<acronym>CD</acronym>-<acronym>RW</acronym> disks with
23<acronym>UDF</acronym> file systems for both
24reading and writing. <acronym>UDF</acronym> files systems are used on
25both <acronym>CD</acronym>-<acronym>RW</acronym> media and
26on <acronym>DVD</acronym>. For more details of the
27<acronym>UDF</acronym> file system standard see:
28<ulink url="http://www.osta.org"/> and
29<ulink url="http://www.ecma-international.org"/>.</para>
30
31<sect3><title>Package information</title>
32<itemizedlist spacing='compact'>
33<listitem><para>Download (HTTP): <ulink url="&udftools-download-http;"/></para></listitem>
34<listitem><para>Download (FTP): <ulink url="&udftools-download-ftp;"/></para></listitem>
35<listitem><para>Download size: &udftools-size;</para></listitem>
36<listitem><para>Estimated Disk space required: &udftools-buildsize;</para></listitem>
37<listitem><para>Estimated build time: &udftools-time;</para></listitem></itemizedlist>
38</sect3>
39
40<sect3><title>Additional downloads</title>
41<itemizedlist spacing='compact'>
42<listitem><para>Required Patch: <ulink
43url="&patch-root;/linux-2.4.26-packet-1.patch"/></para></listitem>
44<listitem><para>Patches for other kernel versions:
45<ulink url="http://w1.894.telia.com/~u89404340/patches/packet/"/></para></listitem>
46</itemizedlist></sect3>
47
48</sect2>
49
50<sect2>
51<title>Installation of the kernel patch</title>
52
53<warning>
54<para>Note that this patch can permanently damage your <acronym>CD</acronym>
55drive if it is from one of the few mentioned at
56<ulink url="http://slashdot.org/article.pl?sid=03/10/25/1737244"/>. Do
57not apply the patch without first checking out the article.</para>
58</warning>
59
60<para>Install the kernel patch by running the following commands from
61the kernel source directory:</para>
62
63<screen><userinput><command>patch -Np1 -i ../linux-2.4.26-packet-1.patch</command></userinput></screen>
64
65<para>In the kernel configuration, check your setting with those listed
66here:</para>
67
68<screen>Block devices
69 Packet writing on CD/DVD media: Y or M
70File Systems
71 UDF filesystems support (read only): Y
72 UDF write support (DANGEROUS) Y</screen>
73
74<para>If necessary, recompile the kernel with:</para>
75
76<screen><userinput><command>make CC=/opt/gcc-2.95.3/bin/gcc dep &amp;&amp;
77make CC=/opt/gcc-2.95.3/bin/gcc bzImage &amp;&amp;
78make CC=/opt/gcc-2.95.3/bin/gcc modules &amp;&amp;
79make CC=/opt/gcc-2.95.3/bin/gcc modules_install</command></userinput></screen>
80
81<para>
82Copy <filename>/usr/src/linux/arch/i386/boot/bzImage</filename> and
83<filename>/usr/src/linux/System.map</filename> to
84<filename class="directory">/boot</filename>. If you utilize
85<application>LILO</application>, edit <filename>/etc/lilo.conf</filename>
86appropriately and run <command>lilo</command>.</para>
87
88<para>If you built packet writer as a module, add the following to
89<filename>/etc/modules.conf</filename>:</para>
90
91<screen><userinput>alias block-major-97 pktcdvd</userinput></screen>
92
93<para>Finally, create the packet driver device nodes in <filename
94class="directory">/dev</filename>, add one node for every
95<acronym>CD</acronym>-<acronym>RW</acronym> drive you
96want to support:</para>
97
98<screen><userinput><command>mknod /dev/pktcdvd0 b 97 0
99mknod /dev/pktcdvd1 b 97 1</command></userinput></screen>
100
101</sect2>
102
103<sect2>
104<title>Installation of <application><acronym>UDF</acronym>tools</application></title>
105
106<para>Install <application><acronym>UDF</acronym>tools</application> by
107running the following commands:</para>
108
109<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
110make &amp;&amp;
111make install</command></userinput></screen>
112
113</sect2>
114
115<sect2>
116<title>Contents</title>
117
118<para>The <application><acronym>UDF</acronym>tools</application> package
119contains <command>pktsetup</command>, <command>cdrwtool</command>, and
120<command>mkudffs</command>.</para>
121
122</sect2>
123
124<sect2><title>Description</title>
125
126<sect3><title>pktsetup</title>
127<para><command>pktsetup</command> is used to establish and break down
128associations between the kernel packet driver and a physical drive.</para>
129
130<para>Example:
131<screen><command>pktsetup /dev/pktcdvd0 /dev/scd0
132mount /dev/pktcdvd0 /mnt/cdrom -t udf -o rw,noatime</command></screen>
133
134associates the physical device <filename>/dev/scd0</filename> with the
135kernel packet driver <filename>/dev/pktcdvd0</filename>, then mounts a
136<acronym>UDF</acronym> formatted
137<acronym>CD</acronym>-<acronym>RW</acronym> for read/write
138access.</para></sect3>
139
140<sect3><title>cdrwtool</title>
141<para><command>cdrwtool</command> provides facilities to manage
142<acronym>CD</acronym>-<acronym>RW</acronym> drives, including formatting
143new disks, setting the read and write speeds, etc.</para>
144
145<para>Example:
146<screen><command>cdrwtool -d /dev/scd0 -q</command></screen>
147
148prepares a new <acronym>CD</acronym>-<acronym>RW</acronym> for use and
149formats it with a <acronym>UDF</acronym> file system.</para></sect3>
150
151<sect3><title>mkudffs</title>
152<para><command>mkudffs</command> is used to create new
153<acronym>UDF</acronym> file systems. It can be used on hard disks and
154<acronym>CD</acronym>-R as well as
155<acronym>CD</acronym>-<acronym>RW</acronym>.</para></sect3>
156
157</sect2>
158
159</sect1>
160
Note: See TracBrowser for help on using the repository browser.