It may be possible but I think you'll end up with some crazy permissions problems in the end since the user's UID's will be conflicting and it would be more trouble than it's worth.
But, what you could do is have the files you need to be in common for the users relocated and use symbolic links.
So, each user's documents, desktop and whatever else can point to something like /home/common/documents and the user's documents directories would be symbolic links that point to the directories.
In this case the users will keep their typical unique libraries but share the necessary files.
I know you can use identical home directories for FTP and SSH like you've tried here by creating the group and applying the 770 permissions to everything but I don't think you're going to have much luck with actually having them login using the gui. Somebody else may have more insight on that setup.
Main Topics
Browse All Topics





by: RBEIMSPosted on 2009-08-06 at 04:39:42ID: 25032107
I don't think that this setup would be possible. There are sockets that are opened in the home directory when the window manager runs. Normally there are also DBUS connections that are created and if two users try to use the same directory at the same time this would cause problems.
I would suggest that you created home directories for all the users and then created a symlink inside these directories pointing to the shared home. This way they could use their tools with minor adjustments and also could have private configurations.
I think the symlinks could even be created automatically when creating the users. Check /etc/skel, this is automatically copied to the new home when a new user is created.