diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-12-17 06:32:04 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:28 -0500 |
commit | 6a5baabc0c90aa524f557e3648320a42be0f9569 (patch) | |
tree | 82a3a22da20ef50b0e7497df9335389c72ddb70c | |
parent | d5d0651bb98be2d060a61048c50cbc20e7901416 (diff) | |
download | samba-6a5baabc0c90aa524f557e3648320a42be0f9569.tar.gz samba-6a5baabc0c90aa524f557e3648320a42be0f9569.tar.bz2 samba-6a5baabc0c90aa524f557e3648320a42be0f9569.zip |
r4245: add a note about using a tdb to store xattr information, so you can
have all Samba4 features on a plain posix filesystem.
(This used to be commit a6c4f4b7c9b9a66bde02bd1b63258dbc14dd48c9)
-rw-r--r-- | howto.txt | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -107,12 +107,18 @@ try these commands: smbclient //localhost/test -Uadministrator%SOMEPASSWORD or - ./script/tests/test_posix.sh //localhost/test administrator - SOMEPASSWORD + ./script/tests/test_posix.sh //localhost/test administrator SOMEPASSWORD Note that to pass all the tests you would need to be using a filesystem with user_xattr support. On many Linux systems with an ext3 filesystem this means mounting with the "-o user_xattr" option. Consult your filesystem and kernel docs for more details. +If you don't have a filesystem with xattr support, then you can +simulate it by using the option: + posix:eadb = /usr/local/samba/eadb.tdb + +that will place all extra file attributes (NT ACLs, DOS EAs, streams +etc), in that tdb. It is not efficient, and doesn't scale well, but at +least it gives you a choice when you don't have a modern filesystem. |