Web Hosting Talk







View Full Version : ext3 look-a-like for FreeBSD ?


CRego3D
04-10-2002, 11:47 AM
Simple question really :) .. is there a file system like ext3 (with journal) for FreeBSD ?

ScottD
04-10-2002, 11:55 AM
UFS (FreeBSD default) already what journaling offers through soft updates.

Run mount and you should see something like:/dev/ad0s1e on /usr (ufs, local, soft-updates) which will tell you that you have soft-updates enabled on /usr.

Soft Updates is like journaling in that it is safe, but it provides some performance improvements. The downfall is that data is sometimes not actually written to the disk for several seconds. You are guaranteed that your file systems will remain consistent.

<<EDIT>>
Some good info here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/configtuning-disk.html

CRego3D
04-10-2002, 12:45 PM
Tat's excellent Scott, thanks for the info :)