I need a shared folder. My wife and I need to exchange files on the same computer. How can we do that?
Asked
Active
Viewed 2,366 times
15
-
Never tried but may be the Public folder in the User's home folder would share the stuff system-wide. – Gaurav Butola Nov 24 '10 at 22:01
-
Please subscribe to blueprint on launchpad https://blueprints.launchpad.net/ubuntu/+spec/local-file-share/ – vrcmr Nov 26 '10 at 20:36
3 Answers
9
Here's a tutorial from Ubuntu Forums: How to create a shared folder for multiple local users.
Install bindfs.
sudo apt-get install bindfsCreate a hidden and a visible directory for the files.
sudo mkdir /home/.media # create a hidden directory sudo mkdir /home/mediaCreate a new group.
sudo groupadd mediaAdd the user(s) to the group.
sudo gpasswd -a usrname mediaRepeat this for all users. Log out and log back in your current user.
Edit the fstab file.
sudoedit /etc/fstabAdd a new entry at the end of the file.
bindfs#/home/.media /home/media fuse group=media,perms=g=rwxMount the filesystems mentioned in fstab.
sudo mount -aMove the files you want to share in the
/home/mediadirectory.
-
**bindfs** is nice but not suitable for less experienced users as it involves quite a lot of changes to the standard system configuration (e.g. editing of fstab, adding user groups etc.). – Takkat Nov 25 '10 at 07:49
-
4
-
0
If you have a constant internet connection and bandwidth is not a problem, then you could use Ubuntu One.
Lightbreeze
- 1,570
- 3
- 18
- 29
0
bindfs is documented in the Ubuntu wiki:
https://help.ubuntu.com/community/Bindfs-SharedDirectoryLocalUsers
bmaupin
- 4,782
- 1
- 44
- 68