FUSE and LUFS

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
Post Reply
User avatar
Jeko
Member
Member
Posts: 500
Joined: Fri Mar 17, 2006 12:00 am
Location: Napoli, Italy

FUSE and LUFS

Post by Jeko »

Which are the benefits of projects like FUSE and LUFS?
Rewriting virtual memory manager - Working on ELF support - Working on Device Drivers Handling

http://sourceforge.net/projects/jeko - Jeko Operating System
iammisc
Member
Member
Posts: 269
Joined: Thu Nov 09, 2006 6:23 pm

Re: FUSE and LUFS

Post by iammisc »

you can write filesystem drivers easily and more efficiently because your entire computer will not crash just because you forgot to initialize a variable. With userspace file systems, file systems are programs and therefore, programs can crash without affecting the system. Also, you can use a regular debugger like gdb to fix the problems.
User avatar
Jeko
Member
Member
Posts: 500
Joined: Fri Mar 17, 2006 12:00 am
Location: Napoli, Italy

Re: FUSE and LUFS

Post by Jeko »

iammisc wrote:you can write filesystem drivers easily and more efficiently because your entire computer will not crash just because you forgot to initialize a variable. With userspace file systems, file systems are programs and therefore, programs can crash without affecting the system. Also, you can use a regular debugger like gdb to fix the problems.
Is this the only advantage?
And aren't there any disadvantages?
Rewriting virtual memory manager - Working on ELF support - Working on Device Drivers Handling

http://sourceforge.net/projects/jeko - Jeko Operating System
User avatar
AJ
Member
Member
Posts: 2646
Joined: Sun Oct 22, 2006 7:01 am
Location: Devon, UK
Contact:

Re: FUSE and LUFS

Post by AJ »

Is this a school/university assignment question?

First Google Hit for 'FUSE LUFS'.
User avatar
Jeko
Member
Member
Posts: 500
Joined: Fri Mar 17, 2006 12:00 am
Location: Napoli, Italy

Re: FUSE and LUFS

Post by Jeko »

AJ wrote:Is this a school/university assignment question?

First Google Hit for 'FUSE LUFS'.
No.

However in the FAQ there isn't the reply to my question.
Rewriting virtual memory manager - Working on ELF support - Working on Device Drivers Handling

http://sourceforge.net/projects/jeko - Jeko Operating System
User avatar
AJ
Member
Member
Posts: 2646
Joined: Sun Oct 22, 2006 7:01 am
Location: Devon, UK
Contact:

Re: FUSE and LUFS

Post by AJ »

Hi,

A google for 'benefits of FUSE file system'. Before this thread came up, I didn't know what FUSE was. Now I feel I know quite a bit about its pros/cons from 10 minutes of Googling. Please do the same.

Cheers,
Adam

Edit: fixed URL tags
User avatar
inflater
Member
Member
Posts: 1309
Joined: Thu Sep 28, 2006 10:32 am
Location: Slovakia
Contact:

Re: FUSE and LUFS

Post by inflater »

And aren't there any disadvantages?
AFAIK, if too much current comes through FUSE, you need to replace it with another one, or use a circuit breaker, which is more modern. ;)

Seriously now, a filesystem in userspace? :| Not my type.
My web site: http://inflater.wz.cz (Slovak)
Derrick operating system: http://derrick.xf.cz (Slovak and English :P)
User avatar
ucosty
Member
Member
Posts: 271
Joined: Tue Aug 08, 2006 7:43 am
Location: Sydney, Australia

Re: FUSE and LUFS

Post by ucosty »

inflater wrote:Seriously now, a filesystem in userspace? :| Not my type.
It's just a layer that lets other implement filesystems in userspace. Read/Write NTFS support on Mac is provided through a user-space filesystem module which sits on top of FUSE.
The cake is a lie | rackbits.com
Post Reply