2

I need to setup a company dropbox-like service. We can't use dropbox because we need to share large files (10+gb) which causes a few problems...

1) Bandwidth costs would skyrock
2) Performance would suck, compared to running it internally
3) Each user would need a premium DP account
4) Rather run service interally

What are some popular dropbox-like / collaborative file-sharing software?

John Himmelman
  • 883
  • 5
  • 11
  • 18

1 Answers1

1

I would highly suggest placing FreeNAS on a machine with several TB of disk space. The network I managed has two large FreeNAS machines; one is the active server that everybody uses, the other is a backup mirror that is synced daily using the built in rsync features.

FreeNAS will allow you to mount/access the devices several ways: Samba, NFS, SSH, FTP. It will also allow you do granular user privileges.

FreeNAS is also easy to setup and everything can be configured through it's web interface.

Chad
  • 111
  • 2
  • We have a similar setup for our file storage. But we'd like it for users to be able to access/modify data using the same method internally/externally (and be a similar to DB as possible, esp. important for non-technical users). – John Himmelman May 04 '11 at 21:18
  • 1
    I am not sure how an Internet accessible Samba/NFS/UDP mount is any different than Dropbox. Can you share what the difference to you is? It would be trivial for a user to setup a mount on their Windows/Mac/Linux machine that pointed to a NAS outside of a firewall. It would also be easy for an admin to create a sync daemon to deploy that would sync a particular folder with the remote server. There are several pieces of free software that will do that. – Chad May 04 '11 at 21:31
  • 1
    @John You may want to take a look at this thread...http://superuser.com/questions/128590/alternative-to-dropbox-on-my-server – Chad May 04 '11 at 21:36
  • @Chad Technically they're very similar, but their managed from different ends. Unlike samba, dropbox, users perform the share/access management (eg. any user can share a folder with a select group of people that they define). – John Himmelman May 04 '11 at 21:38
  • 1
    @John You are welcome. If I am not mistaking the FreeNAS web interface can be configured to allow any user to login and see particular items. It may be that you could allow users to login there and set the own sharing preferences. Just a thought. Good luck with your setup. – Chad May 05 '11 at 11:55