vrcmr Asked: 2010-11-25 13:14:48 +0800 CST2010-11-25 13:14:48 +0800 CST 2010-11-25 13:14:48 +0800 CST Two accounts on same computer - how can I make a share folder for both? 772 I need a shared folder. My wife and I need to exchange files on the same computer. How can we do that? directory users shared-folders 3 Answers Voted Best Answer sudobash 2010-11-25T14:21:44+08:002010-11-25T14:21:44+08:00 Here's a tutorial from Ubuntu Forums: How to create a shared folder for multiple local users. Install bindfs. sudo apt-get install bindfs Create a hidden and a visible directory for the files. sudo mkdir /home/.media # create a hidden directory sudo mkdir /home/media Create a new group. sudo groupadd media Add the user(s) to the group. sudo gpasswd -a usrname media Repeat this for all users. Log out and log back in your current user. Edit the fstab file. sudoedit /etc/fstab Add a new entry at the end of the file. bindfs#/home/.media /home/media fuse group=media,perms=g=rwx Mount the filesystems mentioned in fstab. sudo mount -a Move the files you want to share in the /home/media directory. Lightbreeze 2010-11-26T03:19:28+08:002010-11-26T03:19:28+08:00 If you have a constant internet connection and bandwidth is not a problem, then you could use Ubuntu One. bmaupin 2012-12-07T13:29:54+08:002012-12-07T13:29:54+08:00 bindfs is documented in the Ubuntu wiki: https://help.ubuntu.com/community/Bindfs-SharedDirectoryLocalUsers
Here's a tutorial from Ubuntu Forums: How to create a shared folder for multiple local users.
If you have a constant internet connection and bandwidth is not a problem, then you could use Ubuntu One.
bindfs is documented in the Ubuntu wiki:
https://help.ubuntu.com/community/Bindfs-SharedDirectoryLocalUsers