diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-02 12:37:31 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-02 12:37:31 +0000 |
commit | 24bf006d5224e59d2d073ca4a7cb2df838c4c6c7 (patch) | |
tree | 67360075f9d28f60661056afb9b5a335c5b7b86b /source3/smbwrapper/README | |
parent | 019c8d2fdda74dc03d9089eacfbd2b77e1056169 (diff) | |
download | samba-24bf006d5224e59d2d073ca4a7cb2df838c4c6c7.tar.gz samba-24bf006d5224e59d2d073ca4a7cb2df838c4c6c7.tar.bz2 samba-24bf006d5224e59d2d073ca4a7cb2df838c4c6c7.zip |
the guts of the smbwrapper code. I may change the layout of this at
some stage.
(This used to be commit 3f34a3cac817de19d227c36bc792db8b2c3798f9)
Diffstat (limited to 'source3/smbwrapper/README')
-rw-r--r-- | source3/smbwrapper/README | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/source3/smbwrapper/README b/source3/smbwrapper/README new file mode 100644 index 0000000000..be345b5566 --- /dev/null +++ b/source3/smbwrapper/README @@ -0,0 +1,26 @@ +This is a prelodable shared library that provides SMB client services +for existing executables. Using this you can simulate a smb +filesystem. + +Currently this code only works on Linux with glibc2. Eventually I hope +to make it portable to lots of OSes but at the moment if you don't +have Linux then don't even try to use it. + +To use it you need to do this: + +export SMBW_USER=username +export SMBW_PASSWORD=username +export LD_PRELOAD=full_path_to_smbwrapper.so + +then try to access /smb/SERVER/SHARE/ and see what happens. + +For debugging you can set SMBW_DEBUG to an integer debug level. + +This is code under development. Lots of things don't work yet. Quite a +few things do though, for example I've successfully run tar, less, ls, +bash, cmp, cat, du and a bunch of other utilities on files accessed +via this library. + +If you want to help with the development of this code then join the +samba-technical mailing list. + |