~ubuntu-branches/ubuntu/lucid/libpam-mount/lucid

« back to all changes in this revision

Viewing changes to doc/faq.txt

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-08-13 13:01:03 UTC
  • mfrom: (32.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090813130103-wnn1h2t2ny0d1gp0
Tags: 1.27-2ubuntu1
* Merge from Debian unstable, remaining changes:
  - Implement https://wiki.ubuntu.com/PAMConfigFrameworkSpec by adding
    debian/pam-auth-update and installing that.

Show diffs side-by-side

added added

removed removed

Lines of Context:
149
149
 
150
150
=======================================================================
151
151
 
152
 
Q.  Why are my volumes not being unmounted by pam_mount?  I use Debian.
 
152
Q.  Why are my volumes not being unmounted by pam_mount?
153
153
 
154
 
A.  Ensure that CLOSE_SESSIONS is set to yes in /etc/login.defs,
155
 
    otherwise your volume will not be unmounted upon logging out. I
156
 
    believe this default behavior is a bug and have filed it as Debian
157
 
    bug #163635. The maintainer is Karl Ramm <kcr@debian.org>.
158
 
    (Note December 2005: Current maintainer of pam_mount for Debian is
159
 
    Bastian Kleineidam <calvin@debian.org>)
 
154
A.  Some stupid programs keep files open that make it impossible to
 
155
    umount. There is a <logout> directive in the configuration file
 
156
    to kill programs when needed.
160
157
 
161
158
=======================================================================
162
159
 
163
160
Q.  What is with the auth requirement for pam_mount?  Should not this be
164
161
    a session module only?
165
162
 
166
 
A.  Debian's (and some others) PAM distribution does not allow session
167
 
    modules to retrieve a user's password from the PAM subsystem. This
168
 
    is why pam_mount must be used as an auth module (in addition to a
169
 
    session module) on all systems.
 
163
A.  PAM discards the password after all modules from the "auth" stage
 
164
    have run, giving no possibility to retrieve it for "session" stage
 
165
    modules. In case pam_mount does not have the password by the time
 
166
    the session stage is executed, it will try to prompt for it.
 
167
 
 
168
=======================================================================
 
169
 
 
170
Q.  I want to use a FUSE share as my home directory but GNOME/KDE do
 
171
    not seem to like this (error messages, lockups). Why?
 
172
 
 
173
A.  Big desktop environments as the aforementioned make use of locking,
 
174
    symbolic links, and potentially local sockets (UNIX sockets).
 
175
    If the filesystem and/or the remote server do not support these,
 
176
    error messages or lockups may ensue.
170
177
 
171
178
=======================================================================
172
179