<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/7907/Network_Transparency_and_the_Multi-Root_Filesystem</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2009, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Tue, 10 Nov 2009 09:42:14 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>Virtual File Systems</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>This is already possible with various virtual file system layers.</description>
			<pubDate>Tue, 03 Aug 2004 05:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Plan 9/Inferno's way of doing it...</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>I think the way Plan 9 or Inferno does this is better. I mount Bell Labs FTP server using the ftpfs command to /mnt/ftp. All the files of the FTP server show up as local files. Reading them pulls them from the FTP file server. If I were to write to or create a new file in the /mnt/ftp directory and I had permission to do so, it would appear on the FTP server.<br />
<br />
No additional API is needed to do this if you have userland file servers. You don't need to worry whether a protocol is supported or not. If the file server exists and the user mounts it, it can be used just like real files.</description>
			<pubDate>Tue, 03 Aug 2004 06:20:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>already available</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>This is already available in KDE, through kioslave<br />
fish://user@host/home/user/doc.txt can easily be used, and it works for the user too, when he wants to open/save a file <img src="/images/emo/smile.gif" alt=";)" /></description>
			<pubDate>Tue, 03 Aug 2004 07:11:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Not properly available</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>He's talking about making it a feature on the OS-level (or, perhaps, API-level), and thus making it an option for all developers, not just those working in KDE (or GNOME).</description>
			<pubDate>Tue, 03 Aug 2004 07:16:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>LUFS</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Linux Userland File System is one such layer that already has support for FTP, SFTP, gnome vfs, and even a filesharing program.<br />
<br />
<a href="http://lufs.sourceforge.net/lufs/usage.html" rel="nofollow">http://lufs.sourceforge.net/lufs/usage.html</a></description>
			<pubDate>Tue, 03 Aug 2004 07:24:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>works in PHP</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>$f = fopen(&quot;<a href="ftp://www.microsoft.com/mission/statement.html" rel="nofollow">ftp://www.microsoft.com/mission/statement.html</a>&quot;,&quot;r&quot;); <br />
<br />
works in PHP.</description>
			<pubDate>Tue, 03 Aug 2004 07:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>another way to do it</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Filesystem in Userspace:<br />
<a href="http://sourceforge.net/projects/avf" rel="nofollow">http://sourceforge.net/projects/avf</a><br />
<br />
plus <br />
<br />
KIO Fuse Gateway:<br />
<a href="http://wiki.kde.org/tiki-index.php?page=KIO+Fuse+Gateway" rel="nofollow">http://wiki.kde.org/tiki-index.php?page=KIO+Fuse+Gateway</a> <br />
<br />
<br />
It mounts KDE's ioslaves and makes them this way available to all linux apps.</description>
			<pubDate>Tue, 03 Aug 2004 08:02:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>GNU/Hurd's way of doing it</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Yes, you can do it with user space libraries, but a lot of program won't use them or will use different ones, and it is another layer on top of the OS which already has a VFS system.<br />
<br />
I think the article is too simplistic. With the file utils we have :<br />
<br />
(nicolas@Thor2, 1) ~ $ mkdir http:<br />
(nicolas@Thor2, 2) ~ $ mkdir <a href="http://www.google.com" rel="nofollow">http://www.google.com</a><br />
(nicolas@Thor2, 3) ~ $ cd <a href="http://www.google.com" rel="nofollow">http://www.google.com</a><br />
(nicolas@Thor2, 4) ~/http:/www.google.com $ <br />
<br />
So if you want to support these kind of names, you have to change basically everything.<br />
<br />
LUFS is some kind of user space / kernel space mix which does not work very well and can introduce several bugs and security holes. I don't like it, I think it's not the right way to solve the problem which is deeper than something we can do with a kernel module.<br />
<br />
I agree with the comment which says that Plan9 does it very well. But I thinks Plan9 has other drawbacks. Basically, Plan9 does not seem to be source compatible with GNU/Linux. <br />
<br />
So there is another OS which does it well : GNU/Hurd (for the user it works basically as explained for Plan9, if we stay in the VFS part), and one of it's implicit goals is to be source compatible with GNU/Linux (the distribution is Debian, the libc is GNU's, currently even drivers are Linux's). So every program which runs on GNU/Linux could take advantage of this kind of virtual file system.</description>
			<pubDate>Tue, 03 Aug 2004 08:05:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>VMS, 1980s</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>VMS did this years ago over DECnet.  VMS always had a separate 'root' for each file system.  It had its advantages and disadvantages, certainly.  To get to the system stuff you just typed<br />
<br />
$set def sys$system<br />
<br />
To get back to your own directory, you typed<br />
<br />
$set def sys$login<br />
<br />
The symbols, roughly equivilant to / and ~, (though there were hundreds of others)  held the file system together for convenience.  <br />
<br />
The actual command to go to a specific device (be it disk or network directory) was <br />
<br />
$set def filesystem:[directory.subdirectory]<br />
<br />
or if you wanted to see the root of that disk, it was<br />
<br />
$set def filesystem:[000000]<br />
<br />
The syntax was sometimes cumbersome, but it allowed things like this: <br />
<br />
$set def remotemachine::[directory]<br />
<br />
To copy a file from a remote machine *without having to mount anything* you could type <br />
<br />
$copy remotemachine::filesystem:[directory]filename.type;version  *.*;*  - this would copy the remote file to whatever directory you were in, and preserve the name, type, and version number.   The remote machine's decnet server would decide if you had authorization to touch that filesystem, and would usually be configured to have a default file system, so you could omit the filesystem part of the path.<br />
<br />
Just some observations.  It's been done. <img src="/images/emo/smile.gif" alt=";)" /></description>
			<pubDate>Tue, 03 Aug 2004 08:10:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>lazyfs</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>cat /lib/HTML/Form/new/( <br />
forum_name: &quot;kig&quot;, <br />
forum_header: &quot;lazyfs&quot;, <br />
forum_text: &quot;please make something that mounts the URIs on demand, instead of requiring explicit mounting&quot; <br />
)/submit &gt; /net/http/com/osnews/comment.php/news_id/7907/forms/osnewsform</description>
			<pubDate>Tue, 03 Aug 2004 08:32:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Hurd</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>The Hurd does exactly what you are describing.</description>
			<pubDate>Tue, 03 Aug 2004 08:36:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>pipeing protocols</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Well, I had this idea too.<br />
A cool adon would be pipeing of protocols:<br />
http:tar://www.host.org/file.tar.gz<br />
<br />
Or to use PF_UNIX/PF_LOCAL for local webservers/local webinterfaces:<br />
local:<a href="http://path/to/special/file" rel="nofollow">http://path/to/special/file</a><br />
(hmm, maybe this should work with file:<a href="http://...?" rel="nofollow">http://...?</a>)<br />
<br />
However, pipeing would be good.</description>
			<pubDate>Tue, 03 Aug 2004 09:28:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>A little problem with http</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>...is that no sane admin would let you list the content of directories on his web server, so no ls <a href="http://www.microsoft.com" rel="nofollow">http://www.microsoft.com</a> for you, pal!</description>
			<pubDate>Tue, 03 Aug 2004 10:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Asynchronous nature</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>The problem with anythin that looks like a local file is that it will be treated like a local file.<br />
<br />
Almost all software currently in use assumes that it can read from a local file right away.<br />
Any remote file implementation would need to hide the asynchronousity from the applications, thus effectively blocking the IO calls until they can be fullfilled properly.<br />
<br />
Virutal file system layers allow applications to handle the remote connection differently, for example by providing a progress indicator and still be available for user input during transfer.</description>
			<pubDate>Tue, 03 Aug 2004 10:50:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Re: A little problem with http</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>&gt;...is that no sane admin would let you list the content of &gt;directories on his web server, so no ls &gt;<a href="http://www.microsoft.com" rel="nofollow">http://www.microsoft.com</a> for you, pal!<br />
<br />
Some while ago I made an lswww command which worked fine on www.microsoft.com, it just needs to find local hrefs within the index.html, it worked for most JavaScript constructed URIs as well.</description>
			<pubDate>Tue, 03 Aug 2004 10:58:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Re: A little problem with http</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Some while ago I made an lswww command which worked fine on www.microsoft.com, it just needs to find local hrefs within the index.html, it worked for most JavaScript constructed URIs as well.<br />
<br />
Do you really want the kernel to interpret HTML? <img src="/images/emo/wink.gif" alt=";)" />  <br />
<br />
But seriously, most common internet file transfer protocols don't provide enough basics filesystem primitives to make them reliable and/or fast. They provide no locking, reliable retrieval of data, and in the case of HTTP not a persistent connection. Besides that it would really be better to make things mountable (instead of the kinda weird access methods the author suggests). As some others already said, patches like LUFS already provide things like FTP mounting. So, if you really want it you can get it.</description>
			<pubDate>Tue, 03 Aug 2004 13:22:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Possible for years...</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>* This is already possible in PHP (fopen())<br />
* This is already possible in all KDE apps via KIO slaves (all file dialogs and mounting via KIO Fuse)<br />
* This is already possible in Gnome apps via Gnome-VFS (all file dialogs in Gnome apps)<br />
* This is already possible with some kernel modules like LUFS (this supports mounting remote file systems)<br />
* This is already possible by this HTTP (LD_PRELOAD) hack for GLIBC: <a href="http://www.hping.org/netbrake/" rel="nofollow">http://www.hping.org/netbrake/</a><br />
<br />
The last one comes the closest to your ideas, you can just do a &quot;cat <a href="http://google.com/search?q=hello" rel="nofollow">http://google.com/search?q=hello</a>&quot; from your command line after preloading the netbrake lib.</description>
			<pubDate>Tue, 03 Aug 2004 13:51:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Hard vs soft mounts in NFS</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>It's appealing to be able to mount remote resources (DAV, FTP etc) so that programs that were not designed to access these are suddenly empowered to do so, with ZERO code change.<br />
<br />
A flip side of this is that with zero code change, your app cannot cope with a communication problem. A solution to this is the NFS-style hard mount, in which the application is put in IO wait by the kernel until the resource comes back to life.<br />
<br />
Which, of course, could take forever. If the mount is not INTR enabled, you cannot even kill the application!<br />
<br />
Apple's finder is such an application. It will display a cute beach ball (or spinning wheel?) while you wait. And wait. And wait!<br />
Unfortunately, Finder is very central to the MacOs...<br />
<br />
Mind you, other OSes are no better.<br />
<br />
All mount types should have a configurable timeout on error (NFS does) and applications should be ready to handle errors. Not as in catch(IOException e) {}<br />
<br />
NFS is mostly okay because it lives in campus/enterprise LANs with sysadmins and where latency is not too high.<br />
This breaks down on the internet.</description>
			<pubDate>Tue, 03 Aug 2004 14:47:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>re: Hurd</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>I've heard of Hurd but there ain't a herd of Hurd out there being used. Go Microkernels! Go away Monolithic kernels. Why should my kernel have a video driver in it? Yes, the file-acess-layer running on top of my kernel (is this what you mean by OS, Tonto?) should abstract the details of file-systems. A more classic example of this is the CD-ROM. Remeber when programs had to be &quot;multimedia aware&quot; to access files on a CR-ROM drive? Now, let's all get to work on that Google filesystem so I can use my 1GB on my lowly laptop.</description>
			<pubDate>Tue, 03 Aug 2004 15:06:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Joel is wrong here: network transparency? Yes!</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Network transparency is good, WHEN it's done in the OS (transparent), and why? Because it makes applications a) more powerful/flexible, and b) simpler.<br />
Why should an MP3 player have code to open a file, play it, and then some more, different code for the case that the data comes in over a network? Just get the data, and play it, allright? So stuff like ftp servers mounted on directories, where all common file access works the same as for local files, is nice. The user will know that it's coming from overseas, if he just mounted that ftp directory.<br />
The OS SHOULD worry about local vs. remote, and prefer local operations. In a distributed sytem/cluster, an approach could be, to migrate workloads to other CPU's in the network as much as possible. Wrong: instead of one CPU doing the thing locally (efficient), it splits the task in parts, and creates a lot of network traffic moving data/code around. A better approach: try to use local resources FIRST, and when those are in full use, THEN try to use remote resources to help speed things. The same effect, but minimises use of the network (=usually the most precious resource/bottleneck)</description>
			<pubDate>Tue, 03 Aug 2004 15:22:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Personally, bad idea</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Looks like a cool idea when you first see it. But really, it is quite impractical. Networks are quite different from local devices, there are all sorts of latency, connection and authentication issues that, in the end, if you want decent usability, must be dealt with in the application. I guess an asyncrounous API extended for dealing with networks could work.<br />
<br />
In the kernel? No way. Stick it in a library. (But this is coming from a person who thinks that the local FS and disc drivers should be in libraries too!) If you're writing an OS, make these libraries your API, not what the kernel exposes.<br />
<br />
Has anyone tried typing and HTTP or FTP link in to a Windows open dialog? Works a treat, don't think it can save though. Only tried this with XP.</description>
			<pubDate>Tue, 03 Aug 2004 15:40:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Networks vs. local devices</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Make the local filesystem work like a networked one, problem solved. Your local HD is, after all, connected with unreliable wires that may catch fire at any given moment. Even ramfs or cpufs may fail. Yet these unfortunate happenings shouldn't take the whole system down.<br />
<br />
Things fail. Deal with it.</description>
			<pubDate>Tue, 03 Aug 2004 16:01:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>can be partly done in BeOS</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description><a href="http://www.bebits.com/app/3511" rel="nofollow">http://www.bebits.com/app/3511</a><br />
<br />
of course a total &quot;plan 9&quot; hardware sharing over the network would be the best.<br />
<br />
Yes latency isue arise, but remember that a HD also have that, just at smaller latency and it's managable.</description>
			<pubDate>Tue, 03 Aug 2004 16:31:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>index.html? no! ;-)</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>lftp <a href="http://www.microsoft.com" rel="nofollow">http://www.microsoft.com</a><br />
lftp www.microsoft.com:/&gt; ls<br />
lftp www.microsoft.com:/&gt; rm index.html<br />
rm: Access failed: 404 Not Found (index.html)</description>
			<pubDate>Tue, 03 Aug 2004 18:40:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>@Anon666</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Haha... default.asp!</description>
			<pubDate>Tue, 03 Aug 2004 19:05:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>@Alwin Henseler &amp;amp; @Daniel de Kok</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>@Alwin Henseler<br />
Why should an mp3 player deal with files at all? An mp3 &quot;player&quot; should do nothing more that decode an mp3 stream into raw audio data.<br />
<br />
stdin, stdout &amp; stderr is all a program should ever think about. (I could imagine adding a new interface for configuration though).<br />
<br />
<br />
@Daniel de Kok<br />
<br />
HTTP/1.1 supports persistent connections.<br />
<br />
<br />
There are other problems with HTTP though. HTTP-URIs are opaque so there is no concept of directories (WebDAV has collections) and files, each URI identifies a resource. If you can read (GET) <a href="http://www.example.com/foo/bar/" rel="nofollow">http://www.example.com/foo/bar/</a> you can't assume that <a href="http://www.example.com/foo/" rel="nofollow">http://www.example.com/foo/</a> exists f.ex.</description>
			<pubDate>Tue, 03 Aug 2004 22:28:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Re: Personally, bad idea</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description><i>Looks like a cool idea when you first see it. But really, it is quite impractical. Networks are quite different from local devices, there are all sorts of latency, connection and authentication issues that, in the end, if you want decent usability, must be dealt with in the application. I guess an asyncrounous API extended for dealing with networks could work.</i><br />
<br />
What you don't realize is that all the problems you can have with a networked filesystem can happen in some local ones, too. <br />
<br />
Think about the spin-up of CD/DVD drives, not to mention scratches on the disk. And what if the user decides to eject the CD while something still accesses it? I know, Linux locks the CD tray by default, but that's a horrible idea from a usability POV. And anyway, there are removable devices that simply *cannot* be locked, such as USB sticks.<br />
<br />
To summarize, network transparency only makes *already existing* problems more apparent. Once those *already existing* problems are fixed, network transparency is no longer problematic.<br />
<br />
<i>In the kernel? No way. Stick it in a library. (But this is coming from a person who thinks that the local FS and disc drivers should be in libraries too!) If you're writing an OS, make these libraries your API, not what the kernel exposes.</i><br />
<br />
You're obviously right. That's what FUSE and the KIO-Bridge are all about, as has been mentioned before.</description>
			<pubDate>Tue, 03 Aug 2004 23:06:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Theres more to it than what you mention.</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Integrating local and remote namespaces is an active area of work, but one problem with your suggestion is that adding url keywords and syntax to the local file system breaks the unix model of file names.  If you're really interested in this, please go install Plan9, read all the papers, and look at the ftpfs linux vfs program as well as the links that other people have put here.<br />
<br />
When you understand why these remote-file solutions work the way they do instead of the way you think they should, you might want to revise your paper to take into account what your have learned.  What it really comes down to is that remote filesystems won't obey POSIX semantics, and that would break most of the programs which used your interface.<br />
<br />
Also, if you're interested in naming, I recommend you read the &quot;future vision&quot; paper at <a href="http://www.namesys.com" rel="nofollow">http://www.namesys.com</a>.</description>
			<pubDate>Tue, 03 Aug 2004 23:25:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>You don't need another OS for that</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>LD_PRELOAD= would do the trick with the additional benefit, that you<br />
could only enable it for Apps where it made sense.<br />
<br />
It's probably easy to convert libferris or something alike into a libc<br />
wrapper, that you simply load `export LD_PRELOAD=/lib/libhttpfopen.so`<br />
whenever needed. This was done before with &quot;zlibc&quot; or &quot;libtrash&quot; and<br />
is far easier than to recompile libc or singe apps. Not a big thing -<br />
write that, not the feature request article!</description>
			<pubDate>Wed, 04 Aug 2004 00:48:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
