<?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>WiredRevolution.com &#187; disk image</title>
	<atom:link href="http://www.wiredrevolution.com/tag/disk-image/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wiredrevolution.com</link>
	<description>A Bit of Linux Wisdom</description>
	<lastBuildDate>Fri, 10 Sep 2010 16:50:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to mount an ISO disk image</title>
		<link>http://www.wiredrevolution.com/system-administration/how-to-mount-an-iso-disk-image</link>
		<comments>http://www.wiredrevolution.com/system-administration/how-to-mount-an-iso-disk-image#comments</comments>
		<pubDate>Thu, 12 Mar 2009 17:48:40 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[system administration]]></category>
		<category><![CDATA[CD]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[loopback]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[mount point]]></category>

		<guid isPermaLink="false">http://www.wiredrevolution.com/?p=991</guid>
		<description><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/>An ISO image is an archive file (disk image) of an optical disc using a conventional ISO (International Organization for Standardization) format. ISO image files typically have a file extension of .ISO.
Many times is convenient to mount an ISO file directly instead of burning it to a CD first. Not only does this save on [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/><p>An ISO image is an archive file (disk image) of an optical disc using a conventional ISO (International Organization for Standardization) format. ISO image files typically have a file extension of .ISO.</p>
<p>Many times is convenient to mount an ISO file directly instead of burning it to a CD first. Not only does this save on wasted CDs/DVDs, but allows much faster access to the ISO since it is on the hard disk itself.</p>
<p>Create the directory or mount point for the ISO.</p>
<pre>
$ sudo mkdir -p /mnt/disk
</pre>
<p>Use the mount command to mount the ISO</p>
<pre>
$ sudo mount -o loop disk_image.iso /mnt/disk
</pre>
<p>A loop device is a pseudo-device that makes a file accessible as a block device. You can now access the files within the ISO as you would a normal disk at the mount point &#8216;/mnt/disk&#8217;.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.wiredrevolution.com/system-administration/how-to-mount-an-iso-disk-image/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Windows Boot Disk with a Linux Machine</title>
		<link>http://www.wiredrevolution.com/system-administration/creating-a-windows-boot-disk-with-a-linux-machine</link>
		<comments>http://www.wiredrevolution.com/system-administration/creating-a-windows-boot-disk-with-a-linux-machine#comments</comments>
		<pubDate>Mon, 17 Nov 2008 12:36:27 +0000</pubDate>
		<dc:creator>Ryan</dc:creator>
				<category><![CDATA[system administration]]></category>
		<category><![CDATA[boot disk]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[floppy disk]]></category>
		<category><![CDATA[self extracting exe]]></category>
		<category><![CDATA[unzip]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.wiredrevolution.com/?p=672</guid>
		<description><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/>The standard way to create a Windows boot disk is to have access to a Windows system.  If you have access to a Linux system instead, and know a couple tricks, you can create boot disk as well.
The first thing to do is find a website that has the boot disks available for download. [...]


Related posts<ol><li><a href='http://www.wiredrevolution.com/ubuntu/installing-ubuntu-910-on-the-dell-zino-hd' rel='bookmark' title='Permanent Link: Installing Ubuntu 9.10 on the Dell Zino HD'>Installing Ubuntu 9.10 on the Dell Zino HD</a> <small>The Dell Inspiron Zino HD is the perfect machine if...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<img src="http://www.wiredrevolution.com/wp-content/uploads/sysadmin_icon.png" width="80" height="94" alt="" title="system administration" /><br/><p>The standard way to create a Windows boot disk is to have access to a Windows system.  If you have access to a Linux system instead, and know a couple tricks, you can create boot disk as well.</p>
<p>The first thing to do is find a website that has the boot disks available for download.  There are plenty of these out there so take your pick. The only thing you must specifically do is make sure that you download the <strong>disk image</strong> and not a <strong>self extracting executable</strong> file which must be run under Windows.</p>
<p>If the image is zipped unzip it.</p>
<pre>
$ unzip cdboot1.zip
</pre>
<pre>
Archive:  cdboot1.zip
  inflating: CDBOOT1.IMG
</pre>
<p>Check that the disk image is the correct size.</p>
<pre>
$ ls -lh CDBOOT1.IMG
</pre>
<pre>
-r--r--r-- 1 ryan ryan 1.5M 1999-12-07 12:00 CDBOOT1.IMG
</pre>
<p>Finally, you will use the <strong>dd</strong> command to copy the disk image to a blank floppy disk.</p>
<pre>
$ dd if=CDBOOT1.IMG of=/dev/fd0
</pre>


<p>Related posts<ol><li><a href='http://www.wiredrevolution.com/ubuntu/installing-ubuntu-910-on-the-dell-zino-hd' rel='bookmark' title='Permanent Link: Installing Ubuntu 9.10 on the Dell Zino HD'>Installing Ubuntu 9.10 on the Dell Zino HD</a> <small>The Dell Inspiron Zino HD is the perfect machine if...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.wiredrevolution.com/system-administration/creating-a-windows-boot-disk-with-a-linux-machine/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
