<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>growisofs &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/growisofs/</link>
	<description>Feed of posts on WordPress.com tagged "growisofs"</description>
	<pubDate>Thu, 31 Dec 2009 04:48:18 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Burning from the terminal]]></title>
<link>http://bytebin.wordpress.com/2009/11/15/burning-from-the-terminal/</link>
<pubDate>Sun, 15 Nov 2009 20:11:24 +0000</pubDate>
<dc:creator>bytebin</dc:creator>
<guid>http://bytebin.wordpress.com/2009/11/15/burning-from-the-terminal/</guid>
<description><![CDATA[This is what I used to burn the firmware file to a cd with strict ISO9660 mode 1. genisoimage -v -o ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><ul>
<li>This is what I used to burn the firmware file to a cd with strict ISO9660 mode 1.</li>
</ul>
<pre class="brush: plain;">genisoimage -v -o YGD8827Av12.iso -V PIONEER -iso-level 1 YGD8827A.BIN</pre>
<p>-v verbose</p>
<p>-o isofilename</p>
<p>-V volumelabel</p>
<p>-iso-level 1 allow only 8.3 filenames</p>
<p>YGD8827A.BIN filespec to save in the iso</p>
<p><span style="text-decoration:underline;">Or&#8230; I can burn files directly to DVD with growisofs</span>:</p>
<pre class="brush: plain;">growisofs -Z /dev/scd0 -v  -V PIONEER -iso-level 1 YGD8827A.BIN</pre>
<ul>
<li>to finalize the session</li>
</ul>
<pre class="brush: plain;">growisofs -M /dev/dvd=/dev/zero</pre>
<p><em>This comes from the excellent  <a href="http://tuxtraining.com">Tux Training</a></em></p>
<h2>All your CLI CD/DVD burning needs with wodim, genisoimage, growisofs, and cdrdao</h2>
<p>Problems with burning mostly happen with the frontend (k3b, gnomebaker, and the dreaded brasero), not so much with the backends (growisofs, wodim or cdrdao).  So why not just learn how to do it on the command line?</p>
<h3>What devices to use, as $user:</h3>
<p>To check the cd/dvd drive options and capabilities for ATAPI devices:</p>
<p>$ wodim &#8211;devices<br />
wodim: Overview of accessible drives (2 found) :<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
0  dev=&#8217;/dev/scd0&#8242;      rwrw&#8211; : &#8216;AOPEN&#8217; &#8216;CD-RW CRW2440&#8242;<br />
1  dev=&#8217;/dev/scd1&#8242;      rwrw&#8211; : &#8216;_NEC&#8217; &#8216;DVD_RW ND-3540A&#8217;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Other alternatives are:</p>
<p>$ wodim dev=/dev/scd0 driveropts=help -checkdrive</p>
<p>and</p>
<p>$ wodim -prcap</p>
<h3>Here are some useful examples using ’scd0′:</h3>
<ul>
<li> Information about a blank CD/DVD:</li>
</ul>
<p>$ wodim dev=/dev/scd0 -atip</p>
<p>or</p>
<p>$ cdrdao disk-info &#8211;device ATA:1,0,0</p>
<ul>
<li>Delete a rewritable disk:</li>
</ul>
<p>$ wodim -blank=fast -v dev=/dev/scd0</p>
<p>or</p>
<p>$ cdrdao blank &#8211;device ATA:1,0,0 &#8211;blank-mode minimal</p>
<ul>
<li>Clone a cd:</li>
</ul>
<p>$ cdrdao copy &#8211;fast-toc &#8211;device ATA:1,0,0 &#8211;buffers 256 -v2</p>
<ul>
<li>Clone a cd on the fly:</li>
</ul>
<p>$ cdrdao copy &#8211;fast-toc &#8211;source-device ATA:1,1,0 &#8211;device ATA:1,0,0 &#8211;on-the-fly &#8211;buffers 256 &#8211;eject -v2</p>
<ul>
<li>Create an audio cd from wav files with 12x speed:</li>
</ul>
<p>$ wodim -v -eject -pad -dao speed=12 dev=/dev/scd0 defpregap=0 -audio *.wav</p>
<ul>
<li>Burn a cd from bin/cue files:</li>
</ul>
<p>$ cdrdao write &#8211;speed 24 &#8211;device ATA:1,0,0 &#8211;eject filenam.cue</p>
<ul>
<li>Burn an ISO image:</li>
</ul>
<p>$ wodim dev=/dev/scd0 driveropts=burnfree,noforcespeed fs=14M speed=8 -dao -eject -overburn -v something.iso</p>
<p>If you get a driveropts error, it is because burnfree is deprecated for some devices, therefore:</p>
<p>$ wodim dev=/dev/scd0 driveropts=noforcespeed fs=14M speed=8 -dao -eject -overburn -v something.iso</p>
<p>or</p>
<p>$ wodim dev=/dev/scd0 fs=14M speed=8 -dao -eject -overburn -v something.iso</p>
<ul>
<li>Create an ISO image with all files (and subdirs) of a directory.</li>
</ul>
<p>This can be burned with the command above (burn ISO image):</p>
<p>$ genisoimage -o myImage.iso -r -J -l directory</p>
<p>If you have a DVD burner, you can also use growisofs for burning to DVD, like burning an ISO image to DVD:</p>
<p>$ growisofs -dvd-compat -Z /dev/dvd=image.iso</p>
<ul>
<li>Burn multiple files to DVD:</li>
</ul>
<p>$ growisofs -Z /dev/dvd -R -J file-1 file-2 file-3 &#8230;</p>
<ul>
<li>If there is space left on the DVD, you can append more files:</li>
</ul>
<p>$ growisofs -M /dev/dvd -R -J file-1 file-2 file-3&#8230;</p>
<ul>
<li>To finalise the session, you use:</li>
</ul>
<p>$ growisofs -M /dev/dvd=/dev/zero</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Parâmetro oculto em growisofs]]></title>
<link>http://danielbauermann.wordpress.com/2009/01/23/parametro-oculto-em-growisofs/</link>
<pubDate>Fri, 23 Jan 2009 02:13:05 +0000</pubDate>
<dc:creator>Daniel Bauermann</dc:creator>
<guid>http://danielbauermann.wordpress.com/2009/01/23/parametro-oculto-em-growisofs/</guid>
<description><![CDATA[Hoje eu estava alterando e validando a rotina de backup em DVD que criei a poucos dias para um clien]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hoje eu estava alterando e validando a rotina de <em>backup</em> em DVD que criei a poucos dias para um cliente quando descobri o motivo pelo qual o DVD-RW não estava gravando.</p>
<p>Inicialmente imaginei que era em função do .tgz que gero com mais de 2GB (que acabei dividindo com o comando <strong>split</strong> &#8211; várias referências ensinam como). Mas nesta <a title="Página sobre backup em DVD com growisofs e crontab" href="http://www.estevao.eti.br/backup-em-dvdrw-growisofs-cron/" target="_blank">página</a> do Estevão Valteix descobri que meu problema era outro.</p>
<p>Na verdade o comando <strong>growisofs</strong>, por padrão, só pode ser executado diretamente em alguma <em>tty</em> (leia terminal). Mas o programa possui uma opção (não documentada! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ) que permite sua execução através da <em>crontab</em>.</p>
<p>Segue o comando completo com o parâmetro oculto (usei o mesmo exemplo da página referenciada):</p>
<pre>$ growisofs -Z /dev/hdX -use-the-force-luke=tty -J -R /dir/backup.tgz</pre>
<blockquote><p>OBRIGADO Estevão!!!</p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[crear un CD/DVD]]></title>
<link>http://pinguinarium.wordpress.com/2008/11/20/crear-un-cd/</link>
<pubDate>Thu, 20 Nov 2008 15:54:15 +0000</pubDate>
<dc:creator>bonchbruevich</dc:creator>
<guid>http://pinguinarium.wordpress.com/2008/11/20/crear-un-cd/</guid>
<description><![CDATA[Preparamos un imagen ISO: mkisofs -rJT /cosas/que/quiero/aparecer/en/el/CD &gt; mi_imagen.iso CD: cd]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Preparamos un imagen ISO:</strong><br />
mkisofs -rJT /cosas/que/quiero/aparecer/en/el/CD &#62; mi_imagen.iso</p>
<p><strong>CD:</strong><br />
cdrecord -v -dao -dev=/dev/cdrom ./mi_imagen.iso</p>
<p><strong>DVD:</strong><br />
growisofs -Z /dev/dvd ./mi_imagen.iso</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[growisofs]]></title>
<link>http://drujebober.wordpress.com/2008/04/24/growisofs/</link>
<pubDate>Thu, 24 Apr 2008 09:43:55 +0000</pubDate>
<dc:creator>Evgen</dc:creator>
<guid>http://drujebober.wordpress.com/2008/04/24/growisofs/</guid>
<description><![CDATA[форматирование &#8211; dvd+rw-format -f /dev/cdrom создание образа в udf &#8211; genisoimage -udf -o]]></description>
<content:encoded><![CDATA[форматирование &#8211; dvd+rw-format -f /dev/cdrom создание образа в udf &#8211; genisoimage -udf -o]]></content:encoded>
</item>
<item>
<title><![CDATA[Slackware 12.1 in release candidate status!]]></title>
<link>http://bipolarsquirrellinux.wordpress.com/2008/04/16/slackware-121-in-release-candidate-status/</link>
<pubDate>Wed, 16 Apr 2008 18:17:26 +0000</pubDate>
<dc:creator>bipolarsquirrel</dc:creator>
<guid>http://bipolarsquirrellinux.wordpress.com/2008/04/16/slackware-121-in-release-candidate-status/</guid>
<description><![CDATA[Can&#8217;t wait to get the official released version of 12.1? Here&#8217;s how you can make your ow]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Can&#8217;t wait to get the official released version of 12.1?  Here&#8217;s how you can make your own DVD from Slackware&#8217;s tree.</p>
<p>Download the <em>slackware-current</em> tree.  You can exclude the sources, and the pasture directories to reduce your download time.</p>
<p>I use rsync, here&#8217;s an example:</p>
<ul>
<li>make a directory to hold the tree:</li>
</ul>
<p>mkdir slackware_tree</p>
<ul>
<li>run rsync:</li>
</ul>
<p>rsync -av  rsync://carroll.cac.psu.edu/slackware/slackware-current/ slackware_tree</p>
<blockquote>
<ul>
<li>use the &#8220;&#8211;exclude&#8221; switch to exclude directories that most won&#8217;t need to reduce download time; such as the source and pasture directories..</li>
</ul>
</blockquote>
<p>rsync -av  &#8211;exclude=/source &#8211;exclude=/pasture rsync://carroll.cac.psu.edu/slackware/slackware-current/ slackware_tree</p>
<ul>
<li>build the iso image:</li>
</ul>
<p>mkisofs -no-emul-boot -boot-load-size 4 -boot-info-table -r -b isolinux/isolinux.bin -c isolinux/boot.catalog -o slackware.iso slackware_tree</p>
<ul>
<li>now burn your image to disk using growisofs:</li>
</ul>
<p>growisofs -dvd-compat -Z /dev/dvd=slackware.iso</p>
<blockquote>
<blockquote>
<ul>
<li>note: you may have to change &#8220;/dev/dvd&#8221; to fit your hardware setup&#8230; or use a graphical client such as k3b</li>
</ul>
</blockquote>
</blockquote>
<p>To get an updated version just re-run the above rsync command to update to the latest tree&#8230;</p>
<p>Good luck!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Gravando DVDs com growisofs]]></title>
<link>http://dimitrihashnov.wordpress.com/2007/12/19/gravando-dvds-com-growisofs/</link>
<pubDate>Wed, 19 Dec 2007 23:16:49 +0000</pubDate>
<dc:creator>serialcoder</dc:creator>
<guid>http://dimitrihashnov.wordpress.com/2007/12/19/gravando-dvds-com-growisofs/</guid>
<description><![CDATA[Para gravar dvd a partir de imagens iso: growisofs -dvd-compat -Z /dev/dvd=F-7-i386-DVD.iso Para gra]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Para gravar dvd a partir de imagens iso:</p>
<pre>
growisofs -dvd-compat -Z /dev/dvd=F-7-i386-DVD.iso</pre>
<p>Para gravar arquivos de dados em um dvd:</p>
<pre>
growisofs -dvd-compat -Z /dev/dvd -R -J /diretorio</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[dd, dvd, iso, and ?]]></title>
<link>http://nambabwe.wordpress.com/2007/05/24/dd-dvd-iso-and/</link>
<pubDate>Thu, 24 May 2007 16:00:54 +0000</pubDate>
<dc:creator>nambabwe</dc:creator>
<guid>http://nambabwe.wordpress.com/2007/05/24/dd-dvd-iso-and/</guid>
<description><![CDATA[from disk: dd if=/dev/dvd of=dvd.iso # for dvd dd if=/dev/cdrom of=cd.iso # for cdrom dd if=/dev/scd]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>from disk:</strong><strong></strong></p>
<p>dd if=/dev/dvd of=dvd.iso # for dvd<br />
dd if=/dev/cdrom of=cd.iso # for cdrom<br />
dd if=/dev/scd0 of=cd.iso # if cdrom is scsi<strong></strong></p>
<p><strong>from files:</strong></p>
<p>mkisofs -o /tmp/cd.iso /tmp/directory/</p>
<p><strong>burn cd:</strong></p>
<p>cdrecord -scanbus -dev=help<br />
cdrecord dev=/dev/cdrom -speed=4 -v cd.iso<br />
<strong><br />
<strong>burn dvd:</strong></strong></p>
<p>growisofs -dvd-compat -Z /dev/hda=dvd.iso<br />
growisofs -dvd-compat -Z /dev/dvdrw=file.iso</p>
<p><strong><strong>or</strong></strong></p>
<p>apt-get install portmap</p>
<p>apt-get install mkisofs dvd+rw-tools</p>
<p>mount -t nfs 10.0.0.xx:/remotefolder folder</p>
<p>mkisofs -v -v -r -J -o dvd.iso folder<strong></strong></p>
<p>umount folder<strong></strong></p>
<p>growisofs -dvd-compat -Z /dev/hda=dvd.iso</p>
<p>eject /dev/hda<strong></strong></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
