On Do, Sep 06, 2012 at 19:47:25 (CEST), Michael Terry wrote: > Can't reproduce on my normal non-NFS setup, so the NFS bit must be > important. > > I would not at all be surprised if unity-greeter is responsible for > this. Is there an easy way to fake NFS /home without actually doing > it?
You could try to install an nfs server on localhost and mount from there. However, I'd be a bit surprised if that actually worked. Setting up nfs is really super easy: apt-get install nfs-kernel-server mkdir -p /srv/nfs/home echo /srv/nfs <clientip>(rw,async) | tee /etc/exports exportfs -rv # server done, you might want to create the actual home directory with # correct owner and permissions, though on the client: sudo apt-get install nfs-common sudo mount <serverip>:/srv/nfs/home /home #client done -- Gruesse/greetings, Reinhard Tartler, KeyID 945348A4 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1044251 Title: Unable to login - Password input box does not appear To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/lightdm/+bug/1044251/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
