All of lore.kernel.org
 help / color / mirror / Atom feed
* [uml-devel] [Announce] mountlo 0.5 - Loopback mounting in userspace
@ 2006-02-27 15:10 ` Miklos Szeredi
  0 siblings, 0 replies; 6+ messages in thread
From: Miklos Szeredi @ 2006-02-27 15:10 UTC (permalink / raw)
  To: fuse-devel, user-mode-linux-devel, linux-fsdevel, linux-kernel

I'm proud to announce a new version of my pet project 'mountlo', a
utility which works similarly to 'mount -o loop', but the filesystem
runs entirely in userspace.

While arguably it is quite useless, I like it because it combines some
of my favorite technologies (Linux, UML and FUSE) with very little
additional glue code.

Features:

 o safe mounting of filesystem images for unprivileged users
 o all disk-filesystem types supported in a single binary

What's new since 0.2:

 o support for partitioned disk images
 o support for mount options
 o error reporting both from mount and the kernel
 o achieves reasonable performance using SKAS0 mode of UML
 o verbose and debug modes

An i386 binary (2MB) is available at:

  http://prdownloads.sourceforge.net/fuse/mountlo-i386-0.5.tar.gz

Requirements for running the binary are:

  - FUSE kernel module.  Since 2.6.14, this is included in mainline
  - FUSE utilities (at least version 2.2).

Compiling from source needs the following components:

   - http://prdownloads.sourceforge.net/fuse/mountlo-0.5.tar.gz
   - Linux-2.6.15 kernel source
   - FUSE-2.5 or later devel package (or source installation)

Comments and bug reports are welcome.

Miklos


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Announce] mountlo 0.5 - Loopback mounting in userspace
@ 2006-02-27 15:10 ` Miklos Szeredi
  0 siblings, 0 replies; 6+ messages in thread
From: Miklos Szeredi @ 2006-02-27 15:10 UTC (permalink / raw)
  To: fuse-devel, user-mode-linux-devel, linux-fsdevel, linux-kernel

I'm proud to announce a new version of my pet project 'mountlo', a
utility which works similarly to 'mount -o loop', but the filesystem
runs entirely in userspace.

While arguably it is quite useless, I like it because it combines some
of my favorite technologies (Linux, UML and FUSE) with very little
additional glue code.

Features:

 o safe mounting of filesystem images for unprivileged users
 o all disk-filesystem types supported in a single binary

What's new since 0.2:

 o support for partitioned disk images
 o support for mount options
 o error reporting both from mount and the kernel
 o achieves reasonable performance using SKAS0 mode of UML
 o verbose and debug modes

An i386 binary (2MB) is available at:

  http://prdownloads.sourceforge.net/fuse/mountlo-i386-0.5.tar.gz

Requirements for running the binary are:

  - FUSE kernel module.  Since 2.6.14, this is included in mainline
  - FUSE utilities (at least version 2.2).

Compiling from source needs the following components:

   - http://prdownloads.sourceforge.net/fuse/mountlo-0.5.tar.gz
   - Linux-2.6.15 kernel source
   - FUSE-2.5 or later devel package (or source installation)

Comments and bug reports are welcome.

Miklos

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [uml-devel] [Announce] mountlo 0.5 - Loopback mounting in userspace
  2006-02-27 15:10 ` Miklos Szeredi
@ 2006-02-27 17:08   ` Jeff Dike
  -1 siblings, 0 replies; 6+ messages in thread
From: Jeff Dike @ 2006-02-27 17:08 UTC (permalink / raw)
  To: Miklos Szeredi
  Cc: fuse-devel, user-mode-linux-devel, linux-fsdevel, linux-kernel

On Mon, Feb 27, 2006 at 04:10:38PM +0100, Miklos Szeredi wrote:
> I'm proud to announce a new version of my pet project 'mountlo', a
> utility which works similarly to 'mount -o loop', but the filesystem
> runs entirely in userspace.
> 
> While arguably it is quite useless, I like it because it combines some
> of my favorite technologies (Linux, UML and FUSE) with very little
> additional glue code.

Very cute.  I'm in the process of doing something similar, except I'm
integrating a FUSE server into the UML kernel to export the UML
filesystem to the host.  So far, I can cd and ls inside the mount -
lookup and readdir are implemented.

				Jeff


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [uml-devel] [Announce] mountlo 0.5 - Loopback mounting in userspace
@ 2006-02-27 17:08   ` Jeff Dike
  0 siblings, 0 replies; 6+ messages in thread
From: Jeff Dike @ 2006-02-27 17:08 UTC (permalink / raw)
  To: Miklos Szeredi
  Cc: fuse-devel, user-mode-linux-devel, linux-fsdevel, linux-kernel

On Mon, Feb 27, 2006 at 04:10:38PM +0100, Miklos Szeredi wrote:
> I'm proud to announce a new version of my pet project 'mountlo', a
> utility which works similarly to 'mount -o loop', but the filesystem
> runs entirely in userspace.
> 
> While arguably it is quite useless, I like it because it combines some
> of my favorite technologies (Linux, UML and FUSE) with very little
> additional glue code.

Very cute.  I'm in the process of doing something similar, except I'm
integrating a FUSE server into the UML kernel to export the UML
filesystem to the host.  So far, I can cd and ls inside the mount -
lookup and readdir are implemented.

				Jeff

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [uml-devel] [Announce] mountlo 0.5 - Loopback mounting in userspace
  2006-02-27 17:08   ` Jeff Dike
@ 2006-02-27 17:20     ` Miklos Szeredi
  -1 siblings, 0 replies; 6+ messages in thread
From: Miklos Szeredi @ 2006-02-27 17:20 UTC (permalink / raw)
  To: jdike; +Cc: fuse-devel, user-mode-linux-devel, linux-fsdevel, linux-kernel

> > I'm proud to announce a new version of my pet project 'mountlo', a
> > utility which works similarly to 'mount -o loop', but the filesystem
> > runs entirely in userspace.
> > 
> > While arguably it is quite useless, I like it because it combines some
> > of my favorite technologies (Linux, UML and FUSE) with very little
> > additional glue code.
> 
> Very cute.  I'm in the process of doing something similar, except I'm
> integrating a FUSE server into the UML kernel to export the UML
> filesystem to the host.  So far, I can cd and ls inside the mount -
> lookup and readdir are implemented.

Great.  I always wanted to do the exporting inside the kernel, but put
it off as being too hard :)

Miklos


-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [uml-devel] [Announce] mountlo 0.5 - Loopback mounting in userspace
@ 2006-02-27 17:20     ` Miklos Szeredi
  0 siblings, 0 replies; 6+ messages in thread
From: Miklos Szeredi @ 2006-02-27 17:20 UTC (permalink / raw)
  To: jdike; +Cc: fuse-devel, user-mode-linux-devel, linux-fsdevel, linux-kernel

> > I'm proud to announce a new version of my pet project 'mountlo', a
> > utility which works similarly to 'mount -o loop', but the filesystem
> > runs entirely in userspace.
> > 
> > While arguably it is quite useless, I like it because it combines some
> > of my favorite technologies (Linux, UML and FUSE) with very little
> > additional glue code.
> 
> Very cute.  I'm in the process of doing something similar, except I'm
> integrating a FUSE server into the UML kernel to export the UML
> filesystem to the host.  So far, I can cd and ls inside the mount -
> lookup and readdir are implemented.

Great.  I always wanted to do the exporting inside the kernel, but put
it off as being too hard :)

Miklos

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-02-27 17:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-02-27 15:10 [uml-devel] [Announce] mountlo 0.5 - Loopback mounting in userspace Miklos Szeredi
2006-02-27 15:10 ` Miklos Szeredi
2006-02-27 17:08 ` [uml-devel] " Jeff Dike
2006-02-27 17:08   ` Jeff Dike
2006-02-27 17:20   ` Miklos Szeredi
2006-02-27 17:20     ` Miklos Szeredi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.