3

I have read the Wikipedia pages for both these file systems:

but I couldn't find a real answer. For example, for SFS the common Operating Systems that use it are listed as AmigaOS, AROS and MorphOS. But I haven't heard of those being used today. Unix-based OSes like FreeBSD also use ext2/3 by default — or at least that is what I have read, might be wrong.

Are these file systems still used?

The reason I am asking is that, for example, the SFS uses a technique to avoid fragmentation when appending data to a file. It removes the allocated data completly (if the extend has no room when after the initial data) and places it in a new place where enough sequential data is free. The SFS is the only file system I have found that does this. Is that correct?

TRiG
  • 1,310
  • 1
  • 15
  • 33
ap0
  • 1,308
  • 7
  • 14
  • 1
    There are two questions here: "Are Filesystems like SFS and UFS still used today?" and "The SFS is the only filesystem I have found that does this. Is that correct?". You could reword your question to "What anti-fragmentation techniques are used in modern filesystems" or something similar, but I'm afraid it would be too broad for this site. – gronostaj Sep 23 '14 at 10:19
  • Thanks for the edit suggestion. The second question is not that important. I am ok if it won't be answered. – ap0 Sep 23 '14 at 10:22

1 Answers1

3

FreeBSD, NetBSD, and OpenBSD all use UFS by default. As jillagre mentions in the comments, Solaris also uses it but not by default. ext* file systems are mostly a Linux thing, there's not a lot of support outside of Linux for them. And, to my knowledge, MorphOS is an actively developed OS still, so surely there are some users of it.

Somasis
  • 31
  • 3