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,422 times
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.
0
If you have a constant internet connection and bandwidth is not a problem, then you could use Ubuntu One.
Lightbreeze
- 1,550
0
bindfs is documented in the Ubuntu wiki:
https://help.ubuntu.com/community/Bindfs-SharedDirectoryLocalUsers
bmaupin
- 5,371