<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Create Linux Loopback File System On Disk File</title>
	<atom:link href="http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/</link>
	<description>A capsule of walker's experience in life...</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:09:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Archie</title>
		<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-15959</link>
		<dc:creator>Archie</dc:creator>
		<pubDate>Thu, 19 Jan 2012 11:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-15959</guid>
		<description>I get the concept of loopback file system now after reading everyones comments. The one question I have is whether this can be achieved on a file system where there is limited disk space, e.g. an embedded system with limited resources. From what I understand here, you have a file system, you then create a file and turn it into another file system. I then need to copy the original file system into this pseudo file system structure in order to trick some application software into thinking its running on a different file system. Do I need twice the disk space of the first file system?</description>
		<content:encoded><![CDATA[<p>I get the concept of loopback file system now after reading everyones comments. The one question I have is whether this can be achieved on a file system where there is limited disk space, e.g. an embedded system with limited resources. From what I understand here, you have a file system, you then create a file and turn it into another file system. I then need to copy the original file system into this pseudo file system structure in order to trick some application software into thinking its running on a different file system. Do I need twice the disk space of the first file system?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CocoChristopher</title>
		<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-15184</link>
		<dc:creator>CocoChristopher</dc:creator>
		<pubDate>Thu, 14 Jul 2011 01:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-15184</guid>
		<description>I have found the free IMDISK driver will allow using a filesystem within a host file on Windows.

It can be found here:
http://www.ltr-data.se/opencode.html/#ImDisk</description>
		<content:encoded><![CDATA[<p>I have found the free IMDISK driver will allow using a filesystem within a host file on Windows.</p>
<p>It can be found here:<br />
<a href="http://www.ltr-data.se/opencode.html/#ImDisk" rel="nofollow">http://www.ltr-data.se/opencode.html/#ImDisk</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klepto</title>
		<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-11008</link>
		<dc:creator>Klepto</dc:creator>
		<pubDate>Wed, 10 Nov 2010 18:01:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-11008</guid>
		<description>@Dave C

What you are describing is creating another partition on a disk, this is NOT the same as a loopback filesystem.</description>
		<content:encoded><![CDATA[<p>@Dave C</p>
<p>What you are describing is creating another partition on a disk, this is NOT the same as a loopback filesystem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Padam</title>
		<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10680</link>
		<dc:creator>Padam</dc:creator>
		<pubDate>Sun, 26 Sep 2010 15:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10680</guid>
		<description>I have created a ntfs image file in Linux . I am able to mount it successfully in linux and add and delete data. But i dont know how can i use this image file in wondows ?

Thanks for help</description>
		<content:encoded><![CDATA[<p>I have created a ntfs image file in Linux . I am able to mount it successfully in linux and add and delete data. But i dont know how can i use this image file in wondows ?</p>
<p>Thanks for help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bluechip</title>
		<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10673</link>
		<dc:creator>Bluechip</dc:creator>
		<pubDate>Sun, 26 Sep 2010 01:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10673</guid>
		<description>If you want the virtual-fs remounted automatically at boot time ...add this to the botto of /etc/fstab :
/virtualfs  /mnt/vfs  ext3  loop,auto  0 0
...obviously change the fliename[1], mountpoint[6] and filesystem[5] as you require :)

You can test this by un-mounting the current system :
umount /mnt/vfs
...and remounting it with the &quot;mount all&quot; command (as used during boot):
mount -a

...Thnaks for the great tutorial :)</description>
		<content:encoded><![CDATA[<p>If you want the virtual-fs remounted automatically at boot time &#8230;add this to the botto of /etc/fstab :<br />
/virtualfs  /mnt/vfs  ext3  loop,auto  0 0<br />
&#8230;obviously change the fliename[1], mountpoint[6] and filesystem[5] as you require :)</p>
<p>You can test this by un-mounting the current system :<br />
umount /mnt/vfs<br />
&#8230;and remounting it with the &#8220;mount all&#8221; command (as used during boot):<br />
mount -a</p>
<p>&#8230;Thnaks for the great tutorial :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David C.</title>
		<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10290</link>
		<dc:creator>David C.</dc:creator>
		<pubDate>Fri, 30 Jul 2010 16:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10290</guid>
		<description>Mastaus wrote:
&quot;Is it possible to do the same in Windows XP or Vista ? and how ?&quot;

Yes it is possible.  Right-click your My Computer (or simply Computer in Vista/W7) icon and choose Manage from the pop-up menu.

Go to Storage -&gt; Disk Management where you can do all kinds of scary things to your disks, including creating a new partition.  Right-click the (C:) portion of Disk 0 and choose to Shrink Volume.  Once that process has completed (first you have to make some decisions, etc.), right-click the newly vacated space and choose to create a new partition.  The system will assign a drive letter and you can now use it by accessing that drive letter in Windows Explorer.  Otherwise, it&#039;s just like using a loop-back file system on Linux.

I hope this helps -

/David C.</description>
		<content:encoded><![CDATA[<p>Mastaus wrote:<br />
&#8220;Is it possible to do the same in Windows XP or Vista ? and how ?&#8221;</p>
<p>Yes it is possible.  Right-click your My Computer (or simply Computer in Vista/W7) icon and choose Manage from the pop-up menu.</p>
<p>Go to Storage -&gt; Disk Management where you can do all kinds of scary things to your disks, including creating a new partition.  Right-click the (C:) portion of Disk 0 and choose to Shrink Volume.  Once that process has completed (first you have to make some decisions, etc.), right-click the newly vacated space and choose to create a new partition.  The system will assign a drive letter and you can now use it by accessing that drive letter in Windows Explorer.  Otherwise, it&#8217;s just like using a loop-back file system on Linux.</p>
<p>I hope this helps -</p>
<p>/David C.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David C.</title>
		<link>http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10289</link>
		<dc:creator>David C.</dc:creator>
		<pubDate>Fri, 30 Jul 2010 16:13:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/2007/07/01/create-linux-loopback-file-system-on-disk-file/#comment-10289</guid>
		<description>Scooter wrote:
&quot;Anyone know why sometimes, even after a umount of the mounted file, losetup -d /dev/loop returns “LOOP_CLR_FD: Device or resource busy” ?&quot;

Someone or some process has a file open on the device . . .</description>
		<content:encoded><![CDATA[<p>Scooter wrote:<br />
&#8220;Anyone know why sometimes, even after a umount of the mounted file, losetup -d /dev/loop returns “LOOP_CLR_FD: Device or resource busy” ?&#8221;</p>
<p>Someone or some process has a file open on the device . . .</p>
]]></content:encoded>
	</item>
</channel>
</rss>

