laser-disk.rst
changeset 1911 870693ce6ff0
child 1912 8b81a8f0f692
equal deleted inserted replaced
1910:123f59618e87 1911:870693ce6ff0
       
     1 .. -*- coding: utf-8; -*-
       
     2 .. include:: HEADER.rst
       
     3 
       
     4 ============
       
     5  Laser disk
       
     6 ============
       
     7 .. contents::
       
     8    :local:
       
     9 
       
    10 What best DVD-R or DVD+R?
       
    11 =========================
       
    12 
       
    13 The DVD-R format was developed by Pioneer in 1997 vc DVD+R in 2002 by Sony.
       
    14 
       
    15 DVD+R format was not an official DVD format until January 25, 2008.
       
    16 
       
    17 DVD-R(W) and DVD+R(W) format are incompatible.
       
    18 
       
    19 DVD-R(W) use amplitude modulation, DVD+R(W) use phase modulation, so more reliable.
       
    20 
       
    21 On multi-session DVD-R(W) disk any session take up to 96 MB in time on DVD+R(W)
       
    22 every session take exactly 2 MB.
       
    23 
       
    24 DVD+R(W) win!
       
    25 
       
    26 See
       
    27 
       
    28   http://en.wikipedia.org/wiki/DVD-R
       
    29   http://en.wikipedia.org/wiki/DVD%2BR
       
    30 
       
    31 What capacity of DVD?
       
    32 =====================
       
    33 
       
    34 +----------+-------------------------------------------+
       
    35 |          |                Capacity                   |
       
    36 +  Type    +-----------+---------------+------+--------+
       
    37 |          | sectors   | bytes         | GB   |  GiB   |
       
    38 |          | 2,048B    |               |      |        |
       
    39 +----------+-----------+---------------+------+--------+
       
    40 |DVD-R (SL)| 2,298,496 | 4,707,319,808 | 4.7  |  4.384 |
       
    41 |DVD+R (SL)| 2,295,104 | 4,700,372,992 | 4.7  |  4.378 |
       
    42 |DVD-R DL  | 4,171,712 | 8,543,666,176 | 8.5  |  7.957 |
       
    43 |DVD+R DL  | 4,173,824 | 8,547,991,552 | 8.5  |  7.961 |
       
    44 +----------+-----------+---------------+------+--------+
       
    45 
       
    46 Vendor
       
    47 ======
       
    48 
       
    49 ** Verbatim.
       
    50 
       
    51 Archival Grade CD & DVD - for store critical data.
       
    52 
       
    53   http://www.verbatim.ru
       
    54   http://www.verbatim.com/optical/archival/
       
    55 
       
    56 ** TDK.
       
    57 
       
    58   http://www.tdk-media.com
       
    59 
       
    60 ** Intenso.
       
    61 
       
    62   http://www.intenso.de
       
    63 
       
    64 * Lifetime.
       
    65 
       
    66 What is the life expectancy of a CD-R?
       
    67 ======================================
       
    68 
       
    69 Approximately 100 years under proper storage conditions (from TDK support).
       
    70 
       
    71   http://www.cd-info.com/archiving/
       
    72 
       
    73 How many times can I rewrite to a CD-RW?
       
    74 ========================================
       
    75 
       
    76 A CD-RW disc can be erased and rewritten up to a 1,000 times. Reliability and
       
    77 performance will not decrease, even as the number of rewrites increase.
       
    78 
       
    79 Make an ISO image
       
    80 =================
       
    81 ::
       
    82 
       
    83   $ dd if=/dev/dvd of=dvd.iso  # for dvd
       
    84   $ dd if=/dev/cdrom of=cd.iso # for cdrom
       
    85   $ dd if=/dev/scd0 of=cd.iso  # if cdrom is scsi
       
    86 
       
    87   $ mkisofs -o /tmp/cd.iso /tmp/directory/ # from file hierarchy
       
    88 
       
    89 Burning tools
       
    90 =============
       
    91 
       
    92 ** cdrtools.
       
    93 
       
    94 In 2006 build system of cdrtools changed and have CDDL, which incomputable
       
    95 with GPL.
       
    96 
       
    97 See
       
    98 
       
    99   http://cdrecord.berlios.de/private/cdrecord.html
       
   100   http://en.wikipedia.org/wiki/Cdrecord
       
   101 
       
   102 ** cdrkit.
       
   103 
       
   104 Fully GPL alternative for cdrtools. Includes:
       
   105 
       
   106  * wodim (an acronym for write optical disk media), which was forked from the cdrecord program in
       
   107    cdrtools.
       
   108  * icedax (an acronym for incredible digital audio extractor), which was forked from the cdda2wav
       
   109    program in cdrtools.
       
   110  * genisoimage (short for generate ISO image), which was forked from the mkisofs program in
       
   111    cdrtools.
       
   112 
       
   113 See
       
   114 
       
   115   http://www.cdrkit.org/
       
   116   http://en.wikipedia.org/wiki/Cdrkit
       
   117 
       
   118 Installing under Debian::
       
   119 
       
   120   $ sudo apt-get install wodim genisoimage
       
   121 
       
   122 Cygwin (cdrecord is symlink to wodim, mkisofs is symlink to genisoimage, cdrkit contain only
       
   123 READMY)::
       
   124 
       
   125   $ setup.exe -p cdrkit,wodim,genisoimage
       
   126 
       
   127 Make iso image::
       
   128 
       
   129   $ genisoimage -A "<info>" -gui -J -R -o <img-file> <dir1> <dir2> ...
       
   130 
       
   131 <info> is up to 128 bytes. -J adds Joliet directory records wich useful on
       
   132 Windows. -R adds the Rock Ridge protocol.
       
   133 
       
   134 To test your image mount it (on Linux)::
       
   135 
       
   136   $ sudo mount -t iso9660 -o loop,ro <img-file> <mnt-point>
       
   137 
       
   138 Burn iso image
       
   139 ==============
       
   140 
       
   141 cdrskin
       
   142 -------
       
   143 
       
   144 See
       
   145 
       
   146   http://scdbackup.sourceforge.net/cdrskin_eng.html
       
   147   http://en.wikipedia.org/wiki/Cdrskin
       
   148 
       
   149   $ sudo apt-get install cdrskin
       
   150 
       
   151 xorriso
       
   152 -------
       
   153 
       
   154 xorriso copies file objects from POSIX compliant filesystems into Rock Ridge
       
   155 enhanced ISO 9660 filesystems and allows session-wise manipulation of such
       
   156 filesystems. It can load the management information of existing ISO images and
       
   157 it writes the session results to optical media or to filesystem objects.
       
   158 
       
   159 Vice versa xorriso is able to restore file objects from ISO 9660 filesystems.
       
   160 
       
   161 See
       
   162 
       
   163   http://scdbackup.webframe.org/xorriso_eng.html
       
   164   http://en.wikipedia.org/wiki/xorriso
       
   165 
       
   166 ImgBurn
       
   167 -------
       
   168 
       
   169 ImgBurn is a lightweight CD / DVD / HD DVD / Blu-ray burning application that
       
   170 everyone should have in their toolkit!
       
   171 
       
   172 For Windows 95/98/2000/XP/Vista/2008/7, work in Wine under Linux.
       
   173 
       
   174   http://www.imgburn.com/
       
   175                 home page
       
   176 
       
   177 ** CDBurnerXP.
       
   178 
       
   179 Это бесплатная программа для записи CD и DVD, Blu-Ray и HD-DVD дисков. Она
       
   180 поддерживает запись и создание ISO-образов.
       
   181 
       
   182 For Windows XP/Vista/2008/7. Require .NET >= version 2.0.
       
   183 
       
   184   http://www.cdburnerxp.se/ru/home
       
   185                 home page
       
   186