1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//Samba-Team//DTD DocBook V4.2-Based Variant V1.0//EN" "http://www.samba.org/samba/DTD/samba-doc">
3 <refentry id="vfs_crossrename.8">
6 <refentrytitle>vfs_crossrename</refentrytitle>
7 <manvolnum>8</manvolnum>
8 <refmiscinfo class="source">Samba</refmiscinfo>
9 <refmiscinfo class="manual">System Administration tools</refmiscinfo>
10 <refmiscinfo class="version">4.0</refmiscinfo>
15 <refname>vfs_crossrename</refname>
16 <refpurpose>server side rename files across filesystem boundaries</refpurpose>
21 <command>vfs objects = crossrename</command>
26 <title>DESCRIPTION</title>
28 <para>This VFS module is part of the
29 <citerefentry><refentrytitle>samba</refentrytitle>
30 <manvolnum>7</manvolnum></citerefentry> suite.</para>
32 <para>The <command>vfs_crossrename</command> VFS module allows
33 server side rename operations even if source and target are on
34 different physical devices. A "move" in Explorer is usually a
35 rename operation if it is inside of a single share or device.
36 Usually such a rename operation returns
37 NT_STATUS_NOT_SAME_DEVICE and the client has to move the file by
38 manual copy and delete operations. If the rename by copy is done by the
39 server this can be much more efficient. vfs_crossrename tries to do
40 this server-side cross-device rename operation. There are however
41 limitations that this module currently does not solve:
45 the ACLs of files are not preserved
48 meta data in EAs are not preserved
51 renames of whole subdirectories cannot be done recursively,
52 in that case we still return STATUS_NOT_SAME_DEVICE and
53 let the client decide what to do
56 rename operations of huge files can cause hangs on the
57 client because clients expect a rename operation to
63 <para>This module is stackable.</para>
69 <title>OPTIONS</title>
74 <term>crossrename:sizelimit = BYTES</term>
76 <para>server-side cross-device-renames are only done
77 for files if the filesize is not larger than the defined
78 size in MiB to prevent timeouts. The default sizelimit is
87 <title>EXAMPLES</title>
89 <para>To add server-side cross-device renames inside of a share
90 for all files sized up to 50MB:</para>
93 <smbconfsection name="[testshare]"/>
94 <smbconfoption name="path">/data/mounts</smbconfoption>
95 <smbconfoption name="vfs objects">crossrename</smbconfoption>
96 <smbconfoption name="crossrename:sizelimit">50</smbconfoption>
101 <title>VERSION</title>
102 <para>This man page is correct for version 4.0.0 of the Samba suite.
107 <title>AUTHOR</title>
109 <para>The original Samba software and related utilities
110 were created by Andrew Tridgell. Samba is now developed
111 by the Samba Team as an Open Source project similar
112 to the way the Linux kernel is developed.</para>