Results 1 to 6 of 6

Thread: Cross-Platform DropBox Alternative

  1. #1
    Senior Member Info Tech Geek's Avatar
    Join Date
    Jan 2003
    Location
    Vernon, CT
    Posts
    828

    Cross-Platform DropBox Alternative

    I have two servers:

    Media Server running Win7 (mainly for xbox360 extender)
    File Server running Win2003
    Gaming Laptop running Win7
    General Laptop running Ubuntu

    I would like to setup something along the lines of DropBox without the pay for storage feature and synch my documents across all servers and then use something along the line of Mozy to backup the file server.

    Any suggestions?

  2. #2
    HYBR|D
    Guest
    Quote Originally Posted by Info Tech Geek View Post
    Any suggestions?
    Probably re-post this thread into Operating Systems were it will get attention, and as a bonus will get shown on the main page.

  3. #3
    Senior Member nihil's Avatar
    Join Date
    Jul 2003
    Location
    United Kingdom: Bridlington
    Posts
    17,188
    Moved from GCC

  4. #4
    Senior Member Info Tech Geek's Avatar
    Join Date
    Jan 2003
    Location
    Vernon, CT
    Posts
    828
    Thanks

  5. #5
    Junior Member
    Join Date
    Apr 2004
    Location
    United States
    Posts
    24
    I recommend creating some custom rsync scripts/batch files. I've written similar things mostly for my work laptop and desktop so I can just sync all changes so that both machines have the same up to date information.

    The logic of my script goes something like:
    1)Sync changes from Desktop to Laptop
    2)Sync changes from Laptop to Desktop

    That way if I change one file on the desktop, and a different file on the laptop, then after the sync, both boxes have the updated files from each other. The only downfall to using that method is it doesn't handle file deletes or editing the same file on both machines. So if you delete a file/directory on one system, then the next time you sync you would re-sync the deleted file/directory. And if you edit the same file on both machines then I will end up with the file that I edited last.

    The other catch is that you'd have to install an rsync server/client on the windows machines, something like DeltaCopy etc.. Or perhaps the cygwin version of rsync (which could support using rsync via ssh)

    All of that stuff would have to thrown in a script or batch file. For your implementation I would sync in this way:
    1) Sync from Media Server to File server
    2) Sync from Gaming Laptop to File server
    3) Sync from Ubuntu laptop (the *nix versions of the rsync clients support using rsync via ssh, which IMO would be a better way of doing it, otherwise setup rsyncd and make sure the port on your ubuntu firewall is opened up if you have one.)
    At this point your File server should have all latest version of the files:
    4) Sync from File server to Media Server
    5) Sync from File server to Gaming laptop
    6) Sync from File server to Ubuntu laptop
    Now all of your machines should be up to date
    7) Backup using the File server to Mozy.

    This implementation also doesn't take into account if you make different changes to the same file on multiple machines... that would get nasty, again, this solution in that scenario would result in having the version of that file that was modified last.

    Hope that helps... there might be a much more elegant software solution out there but if you want to do it yourself, I would do what I described in a little sync script/batch file. I can't stand the CLI in Windows so would prefer doing it on a Linux server, but if that isn't an option then I use cygwin.

    Sorry for the rambling....I'm done now...

  6. #6
    Junior Member
    Join Date
    Apr 2004
    Location
    United States
    Posts
    24
    Just ran across... might be worth a look:
    http://www.kablink.org/ifolder

Similar Threads

  1. Intel Demonstrates World's First Working 'Moorestown' Platform
    By t34b4g5 in forum General Computer Discussions
    Replies: 0
    Last Post: October 21st, 2008, 11:15 AM
  2. Practical Guide to Alternative Data Streams in NTFS
    By Irongeek in forum The Security Tutorials Forum
    Replies: 13
    Last Post: January 3rd, 2005, 07:35 PM
  3. Replies: 0
    Last Post: September 27th, 2004, 06:06 PM
  4. The history of the Mac line of Operating systems
    By gore in forum Operating Systems
    Replies: 3
    Last Post: March 7th, 2004, 08:02 AM
  5. NEWS: This weeks bugs and patches
    By xmaddness in forum Miscellaneous Security Discussions
    Replies: 1
    Last Post: October 1st, 2002, 05:03 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •