ZFS(8) | System Manager's Manual | ZFS(8) |
zfs
— configure
ZFS datasets
zfs |
-?V |
zfs |
version |
zfs |
subcommand
[arguments] |
The zfs
command configures ZFS datasets
within a ZFS storage pool, as described in zpool(8). A
dataset is identified by a unique path within the ZFS namespace. For
example:
pool/{filesystem,volume,snapshot}
where the maximum length of a dataset name is MAXNAMELEN (256B) and the maximum amount of nesting allowed in a path is 50 levels deep.
A dataset can be one of the following:
See zfsconcepts(7) for details.
Properties are divided into two types: native properties and user-defined (or "user") properties. Native properties either export internal statistics or control ZFS behavior. In addition, native properties are either editable or read-only. User properties have no effect on ZFS behavior, but you can use them to annotate datasets in a way that is meaningful in your environment. For more information about properties, see zfsprops(7).
Enabling the encryption feature allows for the creation of encrypted filesystems and volumes. ZFS will encrypt file and zvol data, file attributes, ACLs, permission bits, directory listings, FUID mappings, and userused/groupused/projectused data. For an overview of encryption, see zfs-load-key(8).
All subcommands that modify state are logged persistently to the pool in their original form.
zfs
-
?zfs
-V
,
--version
zfs
version
zfs
userland
utility and the zfs kernel module.zfs
destroy
command
return
EBUSY.zfs
send
command.-S
option reverted to the received value if
one exists.The zfs
utility exits
0 on success,
1 if an error
occurs, and 2 if
invalid command line options were specified.
# zfs
create
pool/home
# zfs
set
mountpoint=/export/home
pool/home
# zfs
create
pool/home/bob
# zfs
snapshot
pool/home/bob@yesterday
# zfs
snapshot
-r
pool/home@yesterday
# zfs
destroy
-r
pool/home@yesterday
# zfs
set
compression=off
pool/home
# zfs
set
compression=on
pool/home/anne
#zfs
list
NAME USED AVAIL REFER MOUNTPOINT pool 450K 457G 18K /pool pool/home 315K 457G 21K /export/home pool/home/anne 18K 457G 18K /export/home/anne pool/home/bob 276K 457G 276K /export/home/bob
# zfs
set
quota=50G
pool/home/bob
#zfs
get
all pool/home/bob NAME PROPERTY VALUE SOURCE pool/home/bob type filesystem - pool/home/bob creation Tue Jul 21 15:53 2009 - pool/home/bob used 21K - pool/home/bob available 20.0G - pool/home/bob referenced 21K - pool/home/bob compressratio 1.00x - pool/home/bob mounted yes - pool/home/bob quota 20G local pool/home/bob reservation none default pool/home/bob recordsize 128K default pool/home/bob mountpoint /pool/home/bob default pool/home/bob sharenfs off default pool/home/bob checksum on default pool/home/bob compression on local pool/home/bob atime on default pool/home/bob devices on default pool/home/bob exec on default pool/home/bob setuid on default pool/home/bob readonly off default pool/home/bob zoned off default pool/home/bob snapdir hidden default pool/home/bob acltype off default pool/home/bob aclmode discard default pool/home/bob aclinherit restricted default pool/home/bob canmount on default pool/home/bob xattr on default pool/home/bob copies 1 default pool/home/bob version 4 - pool/home/bob utf8only off - pool/home/bob normalization none - pool/home/bob casesensitivity sensitive - pool/home/bob vscan off default pool/home/bob nbmand off default pool/home/bob sharesmb off default pool/home/bob refquota none default pool/home/bob refreservation none default pool/home/bob primarycache all default pool/home/bob secondarycache all default pool/home/bob usedbysnapshots 0 - pool/home/bob usedbydataset 21K - pool/home/bob usedbychildren 0 - pool/home/bob usedbyrefreservation 0 -
The following command gets a single property value:
#zfs
get
-H
-o
value compression pool/home/bob on
The following command lists all properties with local settings for pool/home/bob:
# zfs
rollback
-r
pool/home/anne@yesterday
# zfs
clone
pool/home/bob@yesterday
pool/clone
#zfs
create
pool/project/production populate /pool/project/production with data #zfs
snapshot
pool/project/production@today #zfs
clone
pool/project/production@today pool/project/beta make changes to /pool/project/beta and test them #zfs
promote
pool/project/beta #zfs
rename
pool/project/production pool/project/legacy #zfs
rename
pool/project/beta pool/project/production once the legacy version is no longer needed, it can be destroyed #zfs
destroy
pool/project/legacy
# zfs
inherit
checksum
pool/home/bob pool/home/anne
#zfs
send
pool/fs@a |ssh
hostzfs
receive
poolB/received/fs@a #zfs
send
-i
a pool/fs@b |ssh
hostzfs
receive
poolB/received/fs
zfs
receive
-d
Option#zfs
send
poolA/fsA/fsB@snap |ssh
hostzfs
receive
-d
poolB/received
# zfs
set
com.example:department=12345
tank/accounting
#zfs
destroy
-r
pool/users@7daysago #zfs
rename
-r
pool/users@6daysago @7daysago #zfs
rename
-r
pool/users@5daysago @6daysago #zfs
rename
-r
pool/users@4daysago @5daysago #zfs
rename
-r
pool/users@3daysago @4daysago #zfs
rename
-r
pool/users@2daysago @3daysago #zfs
rename
-r
pool/users@yesterday @2daysago #zfs
rename
-r
pool/users@today @yesterday #zfs
snapshot
-r
pool/users@today
# zfs
set
sharenfs='rw=@123.123.0.0/16,root=neo'
tank/home
If you are using DNS for host name resolution, specify the fully-qualified hostname.
#zfs
allow
cindys create,destroy,mount,snapshot tank/cindys #zfs
allow
tank/cindys ---- Permissions on tank/cindys -------------------------------------- Local+Descendent permissions: user cindys create,destroy,mount,snapshot
Because the tank/cindys mount point permission is set to 755 by default, user cindys will be unable to mount file systems under tank/cindys. Add an ACE similar to the following syntax to provide mount point access:
# chmod
A+user:cindys:add_subdirectory:allow
/tank/cindys
#zfs
allow
staff create,mount tank/users #zfs
allow
-c
destroy tank/users #zfs
allow
tank/users ---- Permissions on tank/users --------------------------------------- Permission sets: destroy Local+Descendent permissions: group staff create,mount
#zfs
allow
-s
@pset create,destroy,snapshot,mount tank/users #zfs
allow staff
@pset tank/users #zfs
allow
tank/users ---- Permissions on tank/users --------------------------------------- Permission sets: @pset create,destroy,mount,snapshot Local+Descendent permissions: group staff @pset
#zfs
allow
cindys quota,reservation users/home #zfs
allow
users/home ---- Permissions on users/home --------------------------------------- Local+Descendent permissions: user cindys quota,reservation cindys% zfs set quota=10G users/home/marks cindys% zfs get quota users/home/marks NAME PROPERTY VALUE SOURCE users/home/marks quota 10G local
#zfs
unallow
staff snapshot tank/users #zfs
allow
tank/users ---- Permissions on tank/users --------------------------------------- Permission sets: @pset create,destroy,mount,snapshot Local+Descendent permissions: group staff @pset
-F
option is used to indicate type information for
the files affected.
#zfs
diff
-F
tank/test@before tank/test M / /tank/test/ M F /tank/test/linked (+1) R F /tank/test/oldname -> /tank/test/newname - F /tank/test/deleted + F /tank/test/created M F /tank/test/modified
# zfs
bookmark
rpool@snapshot
rpool#bookmark
#
smbmount
//127.0.0.1/share_tmp
/mnt/tmp -o
user=workgroup/turbo,password=obrut,uid=1000
Minimal /etc/samba/smb.conf configuration is required, as follows.
Samba will need to bind to the loopback interface for the ZFS utilities to communicate with Samba. This is the default behavior for most Linux distributions.
Samba must be able to authenticate a user. This can be done in a number of ways (passwd(5), LDAP, smbpasswd(5), &c.). How to do this is outside the scope of this document – refer to smb.conf(5) for more information.
See the USERSHARES section for all configuration options, in case you need to modify any options of the share afterwards. Do note that any changes done with the net(8) command will be undone if the share is ever unshared (like via a reboot).
zfs
diff
and zfs
list
output.zfs
mount
to use
mount(8) to mount ZFS datasets. This option is provided
for backwards compatibility with older ZFS versions.zfs
to set the maximum pipe size for
sends/recieves. Disabled by default on Linux due to an unfixed deadlock in
Linux's pipe size handling code.attr(1), gzip(1), ssh(1), chmod(2), fsync(2), stat(2), write(2), acl(5), attributes(5), exports(5), zfsconcepts(7), zfsprops(7), exportfs(8), mount(8), net(8), selinux(8), zfs-allow(8), zfs-bookmark(8), zfs-change-key(8), zfs-clone(8), zfs-create(8), zfs-destroy(8), zfs-diff(8), zfs-get(8), zfs-groupspace(8), zfs-hold(8), zfs-inherit(8), zfs-jail(8), zfs-list(8), zfs-load-key(8), zfs-mount(8), zfs-program(8), zfs-project(8), zfs-projectspace(8), zfs-promote(8), zfs-receive(8), zfs-redact(8), zfs-release(8), zfs-rename(8), zfs-rollback(8), zfs-send(8), zfs-set(8), zfs-share(8), zfs-snapshot(8), zfs-unallow(8), zfs-unjail(8), zfs-unload-key(8), zfs-unmount(8), zfs-unshare(8), zfs-upgrade(8), zfs-userspace(8), zfs-wait(8), zpool(8)
June 30, 2019 | OpenZFS |