Быстрый способ записи DVD-R (UDF)?

Мы могли бы создать DVD-диски ISO-9660, подключив mkisofs к cdrecord.

Для UDF процедура кажется запутанной и медленной . Он создает временный пустой 4 ГБ файл, затем записывает данные в него и только затем записывает его.

Существует ли быстрый способ записи DVD-R с данными в формате UDF?

6
задан 13 April 2017 в 15:37

2 ответа

Да, есть более быстрый способ записи в файловой системе UDF на CD / DVD. Он называется пакетной записи , представлен в UDF версии 1.50 .

Короче говоря, пакетная запись это способ записи на CD / DVD или другие носители способом, аналогичным чтению, записи, удалению из обычной папки , Этот метод поддерживает как носители с однократной записью на CD / DVD, так и перезаписываемые носители. Очевидно, что вы не получите обратно свободное место, если удалите что-либо с носителя с однократной записью, такого как CD-R, DVD + R, DVD-R и т. Д.

пакетная запись с файловой системой UDF должна поддерживаться на уровне ядра, и эта поддержка поддерживается по умолчанию, начиная с ядра 2.6.10. Для получения дополнительной информации о поддержке ядра в системах Debian, посмотрите эту страницу .

Подробная процедура была описана на этой странице в разделе Форматирование и использование UDF DVD-RW или CD-RW для пакетной записи . Не путайте шаг 3 (который создает пустой сеанс) с созданием большого файла с файловой системой UDF. Этот процесс был указан сразу после этого, который не является пакетной записью .

Обновление : Для удобства зрителя я цитирую раздел процедуры здесь.

Formatting and using a UDF DVD-RW or CD-RW for packet writing
-------------------------------------------------------------

The commands differ depending on whether you are using DVD or CD
media.

1) Edit /etc/default/udftools and add your drive for packet writing.
For example, if your CD/DVD writer is /dev/hdc and you want it
available as the default /dev/pktcdvd/0, then use the setting
"DEVICES=/dev/hdc". Execute "/etc/init.d/udftools start" afterwards to
register the device.

If the device name /dev/hdc differs on your system, adjust the
following commands as appropriate.

2) Prepare the medium in restricted overwrite mode:

DVD-RW: dvd+rw-format -force /dev/hdc
 CD-RW: Do nothing, skip this step!

3) Write an empty session spanning the whole medium. It seems that
without this step, any attempt to create the UDF filesystem will fail.

DVD-RW: growisofs -Z /dev/hdc=/dev/zero
 CD-RW: cdrwtool -d /dev/hdc -q

4) Format the packet device in UDF format.

DVD-RW: mkudffs --udfrev=0x0150 --spartable=2 --media-type=dvdrw /dev/pktcdvd/0
 CD-RW: mkudffs --udfrev=0x0150 --spartable=2 --media-type=cdrw /dev/pktcdvd/0

The parameters require some more explanation: For --udfrev, use either
0x0150 for UDF version 1.50, or 0x0201 for UDF version 2.01. The
version decision has mostly to do with compatibility:
  - Windows 98/ME can read up to v1.02
  - Windows 2000, Mac OS 9, Linux 2.4 can read up to v1.50
  - Windows 2003/XP can read up to v2.01
  - Linux 2.6 can read up to v2.60
For normal data, UDF 1.50 is OK. UDF 2.00 and 2.01 introduce
additional functionality for streaming audio/video.

Possible values for --media-type are: hd dvdram dvdrw worm mo cdrw cdr.
Use the one appropriate for your medium/device.

5) Mount the disc. The "noatime" option is important: It will reduce
the amount of writes to the device and thus increase its lifetime. You
may first have to create the mount directory using "mkdir
/media/dvd0":

  mount -t udf -o rw,noatime /dev/pktcdvd/0 /media/dvd0

The "sync" mount option might also be useful, but will typically cause
an increased number of write accesses to the medium. From now on, the
root user can access the filesystem under /media/dvd0 using read and
write operations.

6) If regular users should also have write access, modify the
permissions as follows _while the filesystem is mounted_:

  chgrp plugdev /media/dvd0       # Set group ownership to "plugdev"
  chmod g+rwx /media/dvd0         # Give full read/write access to group

Now all users who should have access to the disc need to be added to
the "plugdev" group using "adduser <username> plugdev".

To also allow these users to mount and unmount/eject the medium, you
can use either of these two routes:

 - Install the "pmount" package and add the device to the list of
   allowed devices using "echo /dev/pktcdvd/0 >>/etc/pmount.allow".
   All members of the group "plugdev" will then be able to mount the
   disc using "pmount /dev/pktcdvd/0 dvd0" and unmount it using
   "pumount /media/dvd0".

 - Add a line like the following to /etc/fstab:
   /dev/pktcdvd/0 /media/dvd0 udf rw,noatime,users,noauto 0 0
   This will enable _all_ users to mount the disc using
   "mount /media/dvd0" and unmount it with
   "umount /media/dvd0". However, with the permissions from step 5)
   above, only the members of group "plugdev" ought to be able to
   write to it. 
0
ответ дан 13 April 2017 в 15:37

В командной строке нет быстрого и очень простого способа генерирования UDF-диска; Команды , описанные в вашей связанной статье , являются обычными методами. Обычно вы устанавливаете пакет udftools и все остальное, что вам нужно, с помощью

sudo apt-get install udftools libudf0 

, а затем выполняете процесс, как отмечено здесь . Нет более простого способа сделать это в настоящее время. (Важно отметить, что библиотека libudf0 также необходима для работы с файловыми системами UDF.)

Однако программа gui k3b также имеет некоторую поддержку UDF (как показано на скриншоте), так что вероятно, самый простой способ для некоторых из ваших проектов. На самом деле нет большого выбора, когда дело касается UDF, но я думаю, что k3b, вероятно, будет полезен, даже если это не программа командной строки.

enter image description here

0
ответ дан 13 April 2017 в 15:37

Другие вопросы по тегам:

Похожие вопросы: