<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; K3B</title>
	<atom:link href="http://www.ghacks.net/tag/k3b/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Mon, 23 Nov 2009 22:22:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create DVDs in Linux with DeVeDe, mkisofs, and K3B</title>
		<link>http://www.ghacks.net/2009/03/20/create-dvds-in-linux-with-devede-mkisofs-and-k3b/</link>
		<comments>http://www.ghacks.net/2009/03/20/create-dvds-in-linux-with-devede-mkisofs-and-k3b/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 02:56:14 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[devede]]></category>
		<category><![CDATA[dvd authoring]]></category>
		<category><![CDATA[K3B]]></category>
		<category><![CDATA[mkisofs]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=11348</guid>
		<description><![CDATA[My wife and I became hooked on the TV show &#8220;Lost&#8221; recently. As we were way behind we caught up by renting seasons 1-4. But then we ran out and fell behind again because the current season was halfway through&#8230;and had yet to be released on DVD yet. My only recourse was to torrent the [...]]]></description>
			<content:encoded><![CDATA[<p>My wife and I became hooked on the TV show &#8220;Lost&#8221; recently. As we were way behind we caught up by renting seasons 1-4. But then we ran out and fell behind again because the current season was halfway through&#8230;and had yet to be released on DVD yet. My only recourse was to torrent the current episodes of Lost and then burn them onto DVD. Of course I use Linux so I knew this might be a bit tricky. At first it was because there were few howtos out there that completed the process without using an infinite amount of command line tools. Not that I might command line tools&#8230;but I knew I would want to report the process here on gHacks. So I set out to find the easiest, most reliable way to create playable DVDs with as few commands as possible.</p>
<p>What I wound up with is a combination of three tools &#8211; only one of which was a command. It&#8217;s not as simple as creating them in Windows, but it&#8217;s free and it&#8217;s reliable (and will also up your geek &#8220;cred&#8221; &#8211; which we all could use.)</p>
<p><span id="more-11348"></span><strong>DeVeDe</strong></p>
<p>This first tool started out to be the most promising &#8211; until it came time to actually burn the DVD. Unfortunately <a title="DeVeDe" href="http://www.rastersoft.com/programas/devede.html" target="_blank">DeVeDe</a> stinks at the process of burning. So what I wound up using this tool for is to create the DVD structure which consists of a directory VIDEO_TS and all necessary files (.IFO, .VOB, and .BUP to be precise.)</p>
<p>Getting and installing DeVeDe is simple because it is found in most common repositories. Fire up your Add/Remove Software utility, do a search for &#8220;devede&#8221; (no quotes) and install the results of the search.</p>
<div id="attachment_11349" class="wp-caption alignleft" style="width: 310px"><a href="http://www.ghacks.net/wp-content/uploads/2009/03/devede_1.png"><img class="size-medium wp-image-11349" src="http://www.ghacks.net/wp-content/uploads/2009/03/devede_1-500x458.png" alt="DeVeDe Main Window" width="300" height="275" /></a><p class="wp-caption-text">DeVeDe Main Window</p></div>
<p>Once it is installed fire it up. The opening window will ask what disk type you want to create. Click &#8220;Video DVD&#8221;. the new window (shown on the left) is where you add your files and configure your options. You can really get creative with creating menus, etc. For the sake of simplicity we will stick with the basics.</p>
<p>Click the Add button under the Files Pane. This is where you will locate the .avi file you want to add to your movie. In the resulting window you can also switch from PAl to NTSC, add audio tracks (if there isn&#8217;t already one), add subtitles, and a number of advanced options.</p>
<p>Once you have added your file click the OK button to come back to the main window. Now, click the Advanced options drop down to reveal a few more options. In this section you want to select the option &#8220;Create Disk Structure&#8221;. Don&#8217;t bother with the iso option &#8211; DeVeDe is as bad at creating the iso as it is at burning.</p>
<p>Now click the Forward button and the process will begin. Depending upon how many files (and how large they are) you might have a long wait.</p>
<p>Once the process is complete you can Quit out of DeVeDe. You are done with that application.</p>
<p><strong>mkisofs</strong></p>
<p>Now you need to locate the directory housing the <strong>VIDEO_TS </strong>directory. You have to run the <em>mkisofs</em> command on that directory like so:</p>
<p><em>mkisofs -dvd-video -o ~/DVD_NAME.iso /path/to/VIDEO_TS</em></p>
<p>Where DVD_NAME is the name you want to give the iso file and where /path/to/ is the absolute path to the VIDEO_TS directory (but leave out the VIDEO_TS portion.) So if VIDEO_TS is located in /home/jlwallen/movie and I want to name the iso <em>lost.iso</em> the command would look like:</p>
<p><em>mkisofs -dvd-video -o /home/jlwallen/lost.iso /home/jlwallen/movie</em></p>
<p>You will want to make sure there is plenty of space on the drive (or directory) you use for this because it can take up some space (how much depends upon the size of the DVD being created.) The results, once the command is finished, will be DVD_NAME.iso (Again where DVD_NAME is the actual name of the iso you created.)</p>
<p><strong>K3B</strong></p>
<p>Now the easy part. Using K3B you will burn this iso image to disk. You can follow the process in my previous article <a title="K3B" href="http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/" target="_blank">Burn CD and DVD ISO images with K3B</a>. Once K3B finishes you should have a DVD suited for nearly any home DVD player.</p>
<p><strong>Final Thoughts</strong></p>
<p>Nope&#8230;it&#8217;s not as easy as it should be. But now you can re-create the process fairly quickly with the right tools. Have you found an easier way to create DVDs in Linux? If so let your fellow gHacks readers know.</p>

	Tags: <a href="http://www.ghacks.net/tag/devede/" title="devede" rel="tag">devede</a>, <a href="http://www.ghacks.net/tag/dvd-authoring/" title="dvd authoring" rel="tag">dvd authoring</a>, <a href="http://www.ghacks.net/tag/k3b/" title="K3B" rel="tag">K3B</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/mkisofs/" title="mkisofs" rel="tag">mkisofs</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/27/burn-cds-from-command-line/" title="Burn CDs From Command Line (January 27, 2009)">Burn CDs From Command Line</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/" title="Burn CD and DVD ISO Images with K3B (January 11, 2009)">Burn CD and DVD ISO Images with K3B</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/10/20/winx-dvd-author-giveaway/" title="WinX DVD Author Giveaway (October 20, 2009)">WinX DVD Author Giveaway</a> (53)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/20/create-dvds-in-linux-with-devede-mkisofs-and-k3b/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Burn CD and DVD ISO Images with K3B</title>
		<link>http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/</link>
		<comments>http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 00:11:56 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[burning iso]]></category>
		<category><![CDATA[cd burning]]></category>
		<category><![CDATA[dvd burning]]></category>
		<category><![CDATA[iso]]></category>
		<category><![CDATA[K3B]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=9792</guid>
		<description><![CDATA[You just downloaded the newest version of your favorite Linux distribution but you remembered the first time you did it you were in Windows where you had Nero (or some similar application) to help you burn the ISO image onto a CD or DVD. Now you&#8217;re in Linux&#8230;what do you do? Simple. You turn to [...]]]></description>
			<content:encoded><![CDATA[<p>You just downloaded the newest version of your favorite Linux distribution but you remembered the first time you did it you were in Windows where you had Nero (or some similar application) to help you burn the ISO image onto a CD or DVD. Now you&#8217;re in Linux&#8230;what do you do? Simple. You turn to one of the best burning applications available &#8211; K3B.</p>
<p>K3B (KDE Burn Baby Burn) is a CD/DVD authoring software written for the KDE desktop that supports nearly every feature you have come to love with such tools. K3B takes this one step further by being free. And unlike many other similar tools, K3B can burn bootable ISO images so you can keep that free-install smell on your PC at all times.</p>
<p><span id="more-9792"></span>Burning an ISO image with K3B is quite simple. The first step is to start the application. K3B is generally found in the Audio or Multimedia menu entry within the Start (or &#8220;K&#8221;) menu. Once K3B is open you will want to either click on the Burn CD Image (or Burn DVD ISO Image) button or click on the <strong>Tools</strong> menu from the menu bar.</p>
<div id="attachment_9793" class="wp-caption alignnone" style="width: 310px"><a href="http://www.ghacks.net/wp-content/uploads/2009/01/k3b_main.png"><img class="size-medium wp-image-9793" src="http://www.ghacks.net/wp-content/uploads/2009/01/k3b_main-500x343.png" alt="K3B Main Window" width="300" height="206" /></a><p class="wp-caption-text">K3B Main Window</p></div>
<p>If you go the Tools menu route you will see an entries with the same title as the buttons (&#8221;Burn CD Image&#8221; and &#8220;Burn DVD ISO Image&#8221;).</p>
<p>When you select to burn an image a new window will appear. In this new window you have to click directory button in the <strong>Image To Burn</strong> section and locate the ISO file you want to burn.</p>
<div id="attachment_9794" class="wp-caption alignnone" style="width: 304px"><a href="http://www.ghacks.net/wp-content/uploads/2009/01/k3b_burn_image.png"><img class="size-medium wp-image-9794" src="http://www.ghacks.net/wp-content/uploads/2009/01/k3b_burn_image-490x500.png" alt="The Burn Image Window" width="294" height="300" /></a><p class="wp-caption-text">The Burn Image Window</p></div>
<p>Once you have located the image K3B will run a checksum on the image to make sure it matches. When the checksum is finished, and you have inserted the proper medium in your drive, you can click the Start button to begin the burn process.</p>
<p>If you are unsure of your setup, or if you are low on burnable media, you can always select the Simulate button (under Settings) to simulate the burn process. If the process will run successfully you can then uncheck Simulate and run the process as normal.</p>
<p><strong>Final Thoughts</strong></p>
<p>K3B is one of the finest CD/DVD authoring applications available. And having the built-in ability to burn ISO images helps to stand above many other (more costly) alternatives.</p>

	Tags: <a href="http://www.ghacks.net/tag/burning-iso/" title="burning iso" rel="tag">burning iso</a>, <a href="http://www.ghacks.net/tag/cd-burning/" title="cd burning" rel="tag">cd burning</a>, <a href="http://www.ghacks.net/tag/dvd-burning/" title="dvd burning" rel="tag">dvd burning</a>, <a href="http://www.ghacks.net/tag/iso/" title="iso" rel="tag">iso</a>, <a href="http://www.ghacks.net/tag/k3b/" title="K3B" rel="tag">K3B</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2006/10/09/how-to-speed-up-cd-and-dvd-burning/" title="How to Speed up CD and DVD burning (October 9, 2006)">How to Speed up CD and DVD burning</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/03/how-to-easily-dump-ps3-movies-and-games/" title="How to easily dump PS3 movies and games (December 3, 2006)">How to easily dump PS3 movies and games</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/07/29/guides-for-dvd-burning-software-imgburn/" title="Guides For DVD Burning Software ImgBurn (July 29, 2009)">Guides For DVD Burning Software ImgBurn</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/01/26/easy-cd-burning-in-gnome/" title="Easy CD Burning in GNOME (January 26, 2009)">Easy CD Burning in GNOME</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/07/28/dvd-burning-software-imgburn-updated/" title="DVD Burning Software Imgburn Updated (July 28, 2009)">DVD Burning Software Imgburn Updated</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
