This project is a fork of the usmb.git project. If you have that one already cloned locally, you can use
git clone --reference /path/to/your/usmb.git/incarnation mirror_URL
to save bandwidth during cloning.
 
descriptiona few patches for usmb
ownerhramrach@centrum.cz
last changeMon, 22 Mar 2010 22:14:31 +0000 (22 23:14 +0100)
content tags
add:
README
usmb - Unprivileged mounting of SMB/CIFS shares via FUSE
========================================================

Acknowledgements
----------------

Jonathan Schultz (Email <firstname> at imatix.com) provided a patch
to fix the display of file modification times.

Stijn Hoop (Email <firstname> at sandcat.nl) provided a patch to fix
a compilation problem on 64-bit platforms.

Nigel Smith (Email me at <firstname>.<surname>.name) contributed the
port to Samba 3.2.

Michal Suchanek (Email hramrach at centrum dot cz) contributed the
Debian packaging.


Introduction
------------

usmb lets you mount SMB/CIFS shares via FUSE, in the vein of the Map Network
Drive functionality in Windows.

The two existing FUSE filesystems that I know of (SMB for FUSE and fusesmb)
mimic Windows' Network Neighbourhood by letting you browse hosts and shares.
This means that you must run a NetBIOS name server and can't see hosts that
aren't advertised via NetBIOS.

You can build [u]mount.cifs in the Samba distribution and install them
setuid root, but that has its own set of security implications. In any
case there's no need for network filesystem code to be in the kernel:
bugs could lead to remotely exploitable kernel vulnerabilities. Running
the SMB client code in user space as an unprivileged user limits the
potential damage due to bugs.

A user space implementation will be slower than a kernel filesystem since
the data must be copied in and out of the fuse process' context as well as
in/out of the user process' context. Mitigating factors are:

1. Increased security.
2. Containment of bugs.
3. Throughput is more likely to be limited by network bandwidth rather than
   local memory copying.
4. The client filesystem code can be upgraded/fixed without kernel changes.


Pre-Requisites
--------------

glib 2.6 or later - www.gtk.org.
libxml2 - ftp.gnome.org.
FUSE 2.6 or later - fuse.sourgeforge.net.
libsmbclient 3.0 (part of Samba) - www.samba.org.

You need GNU sed to build usmb.


Installation
------------

./configure
make
make install   # Maybe as root, depending on your installation prefix.

If you don't have a configure script then first run autoreconf; this requires
a recent (post-2.63) version of GNU autoconf to be installed.

If the configure script "Cannot find libsmbclient" then use --with-samba=xxx
to tell it where Samba is installed.


Configuration
-------------

You need an XML configuration file - ${HOME}/.usmb.conf by default. There's an
example in usmb.conf.

There are two main elements: credentials and mounts.

Credentials:

  <credentials id="some_id">
    <domain>mydomain</domain>
    <username>username</username>
    <password>password</password>
  </credentials>

Each credentials element gives authentication details. You can have multiple
credentials elements; each must have a distinct id attribute. If you omit
the <password> element then usmb will prompt you for a password.

A mount element describes an SMB share:

  <mount id="mount_id" credentials="some_id">
    <server>1.2.3.4</server>
    <share>sharename</share>
    <mountpoint>/tmp/share</mountpoint>
  </mount>

The credentials attribute identifies the id of the credentials element that
provides authentication details for the share. The server, share and
mountpoint should be self-explanatory. The id is given on the usmb command
line to identify the SMB share to mount.

You can specify multiple mount elements; each must have a distinct id
(though credentials and mount IDs can be the same).

The whole file is wrapped in a <usmbconfig> element.


Usage
-----

$ usmb [options] mount_ID

Use usmb --help for a list of options.
Mount IDs are defined in the configuration file.
shortlog
2010-03-22 Michal SuchanekDetermine snapshot date from commit date, simplifydebian
2010-03-22 Michal SuchanekUpdate year in debian/copyright
2010-03-22 Michal SuchanekAdd rules for creating Debian package automatically
2010-03-22 Michal SuchanekAdd debian/copyright
2010-03-22 Michal SuchanekAdd man page
2010-03-22 Michal SuchanekUse PACKAGE_NAME for tar archive name
2010-03-22 Michal SuchanekFix Debian dependecies, make rules executable
2010-03-22 Michal SuchanekAdd rule to remake autoconf results (ie Makefile)
2010-03-22 Michal SuchanekAdd option to make a snapshot tar archive
2010-03-21 Michal SuchanekRemove Changelog from docs
2010-03-21 Michal SuchanekRevert usmb.docs rename
2010-03-13 Geoff JohnstoneAdd Homepage; rename usmb.docs.
2010-03-13 Geoff JohnstoneInitial commit of Debian packaging.
2010-02-12 Geoff JohnstoneEnforce stricter warnings.
2009-06-15 Geoff JohnstoneAdded -u option.
2009-06-15 Geoff JohnstoneRemoved tabs.
...
heads
14 years ago debian