OpenZFS on Linux and FreeBSD
Go to file
Brian Behlendorf 0b7b505cac Merge commit 'refs/top-bases/linux-unused' into linux-unused 2009-12-23 14:51:56 -08:00
cmd
config Add a check for the fmode_t type. 2009-12-23 14:42:32 -08:00
lib
man Add man pages to the build system and packages. 2009-12-11 16:49:25 -08:00
module Merge commit 'refs/top-bases/zfs-branch' into zfs-branch 2009-12-18 14:31:22 -08:00
patches
scripts Merge commit 'refs/top-bases/zfs-branch' into zfs-branch 2009-12-11 16:22:24 -08:00
.topdeps
.topmsg
AUTHORS
COPYING
COPYRIGHT
ChangeLog
DISCLAIMER
GIT
META
Makefile.am Add man pages to the build system and packages. 2009-12-11 16:49:25 -08:00
OPENSOLARIS.LICENSE
README
TODO
ZFS.RELEASE
autogen.sh
configure.ac Add man pages to the build system and packages. 2009-12-11 16:49:25 -08:00
zfs-modules.spec.in Add chaos5 and rhel6 macro's to the zfs-modules.spec.in 2009-11-24 13:24:25 -08:00
zfs.spec.in Add man pages to the build system and packages. 2009-12-11 16:49:25 -08:00
zfs_unconfig.h

README

============================ ZFS KERNEL BUILD ============================

1) Build the SPL (Solaris Porting Layer) module which is designed to
   provide many Solaris APIs in the Linux kernel which are needed
   by ZFS.  To build the SPL:

        tar -xzf spl-x.y.z.tgz
        cd spl-x.y.z
        ./configure --with-linux=<kernel src>
        make
        make check <as root>

2) Build ZFS, this port is based on build specified by the ZFS.RELEASE
   file.  You will need to have both the kernel and SPL source available.
   To build ZFS for use as a Linux kernel module.

        tar -xzf zfs-x.y.z.tgz
        cd zfs-x.y.z
        ./configure --with-linux=<kernel src> \
                    --with-spl=<spl src>
        make
        make check <as root>

============================ ZPIOS TEST SUITE ============================

3) Provided is an in-kernel test application called zpios which can be
   used to simulate a parallel IO load.  It may be used as a stress 
   or performance test for your configuration.  To simplify testing
   scripts provided in the scripts/ directory which provide a few
   pre-built zpool configurations and zpios test cases.  By default
   'make check' as root will run a simple test against several small
   loopback devices created in /tmp/.

       cd scripts
       ./zfs.sh					# Load the ZFS/SPL modules
       ./zpios.sh -c lo-raid0.sh -t tiny -v 	# Tiny zpios loopback test
       ./zfs.sh -u				# Unload the ZFS/SPL modules

Enjoy,
Brian Behlendorf <behlendorf1@llnl.gov>