TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Building your own secure storage space that mirrors Dropbox's functionality

137 点作者 buckwild超过 13 年前

23 条评论

akent超过 13 年前
TLDR: The code is at <a href="https://github.com/philcryer/lipsync" rel="nofollow">https://github.com/philcryer/lipsync</a>
jgfoot超过 13 年前
What I'd like to see is an easy-to-set up way to run my own version of Dropbox on a small server in my own home. It needs to have a web interface, not just rsync, because a lot of people (like me) don't have access to anything remotely like rsync on our work machines.
评论 #2974062 未加载
评论 #2974496 未加载
评论 #2973795 未加载
评论 #2974091 未加载
audionerd超过 13 年前
Is this just a way to trigger rsync every time a change happens to a given folder?<p>Looks like this command powers it:<p><pre><code> rsync -rav --stats --log-file=/home/$USER_NAME/.lipsyncd/lipsyncd.log -e "ssh -l $USER_NAME -p $SSH_PORT" --delete $REMOTE_HOST:$LOCAL_DIR $REMOTE_DIR </code></pre> Couldn't you just toss that in a Guardfile and get the same effect?<p><pre><code> https://github.com/guard/guard/ </code></pre> Or am I oversimplifying it?
评论 #2973497 未加载
larelli超过 13 年前
Every time I read about the X-th "clone with Dropbox's functionality" I wonder where it will store its files. How many of the potential users have access to online storage they really control themselves? Instead of having the files on Dropbox they end up on AWS or the like. Thats because they try to copy Dropbox down to the flaw, that it doesn't encrypt files on the serverside.<p>For me, any solution would have to include the capability to upload only encrypted files to the server. I know of the duplicity project, which does that for simple, manually triggered backups, but which once caused me headaches to get the data back from partially corrupted files.
评论 #2973866 未加载
ericabiz超过 13 年前
The real selling point of Dropbox, for me, is the ability to just drag and drop files to a folder in Windows and have them be shared.<p>I can also create a subfolder--then I can hit the Dropbox website and type in an email address, and voila, my files in that folder are shared with that person.<p>I agree with Dropbox having security issues and would like to see a replacement. I hope this project implements the drag-and-drop functionality cross-platform. Then I could really recommend it to non-technical users (or some enterprising soul on HN could use it to build a more secure Dropbox clone for non-technical end users.)
评论 #2974060 未加载
strags超过 13 年前
While it's cool to see people replacing Dropbox with OS alternatives, this only seems to capture a fragment of Dropbox's functionality.<p>How, for instance, does it deal with conflicts where files have been changed on two machines independently prior to sync? Dropbox is (somewhat) clever about it, and renames the conflicted versions - and IIRC you can resolve the conflicts manually. At least both files are available on both machines - not sure how this situation is dealt with by lipsync.<p>Dropbox push-updates are immediate. Lipsync relies on a cron job to kick off a receiving file sync.<p>Dropbox will sync directly between clients on a LAN - great for when teams are sometimes working in an office, and sometimes at home.<p>Dropbox maintains revision history - does this?<p>Dropbox has a web interface, mobile apps, etc...<p>I realize that Rome wasn't built in a day, but until at least the first two points are addressed, this isn't much of a replacement.
samstave超过 13 年前
THANK THE GODS<p>Now let me tell you what is REALLY needed :)<p>Teamwork.<p>I work on a virtual team - we all work independently from our homes on client projects.<p>It would be great to create the following for real enterprise version of this:<p>Create an master account. /lipsync/<p>Then have project/team folders under /lipsync<p>/lipsync/1<p>/lipsync/2<p>/lipsync/3<p>/lipsync/4<p>Then have users A, B, C, D<p>Each user can have subscriptions to the project/team folders.<p>But they also have their root /lipsync/ account<p>Thus I can have my lipsync account - and in that I can be on team 1 and 4 with user D<p>Users B and C have subscriptions to 2 and 3 and the master server is all four.<p>This is how I have been wanting dropbox to be able to accomodate a virtual company.<p>You can sort of accomplish this with "shared folders" in drop-box - but because I cant have a server of my own I have to pay ....<p>EDIT: Wow - they jsut came out with Teams (or I have not seen this before... but it is still $13/month per user - which isnt that bad - but you still dont have a local server.)<p>Anyway, good work - I will use lipsync.
sidman超过 13 年前
I dont really know what the big deal is. If you have a file that is top secret dont have it on the internet whether it be your email, in dropbox or even on your own aws/hosted server.<p>Keep it on a flash drive and have it stapled to your arm if you want to transport it. For images that you want to share, or files that you kinda dont give a rats about if they were to get compromised or disappear, place them in places on the internet that match their confidentiality requirements (email - for secure, dropbox - for kinda secure or your own private server - for very secure)<p>I think arguing whether a new solution is required because dropbox can't do the job or whether dropbox can keep your files safe is a moot point. If your files are on the internet they are never 100% safe. Just keep your most private files on an external hard disk and have that disk detached from your computer and the only risk you run is if someone robs your house.<p>I personally think dropbox is great for what i use it for, i put images that i want to share, i transfer files to friends overseas and we all happily share our stuff easily and seamlessly and if i wanna access it i login through the browser or install a new client. WIN. No other service at the moment does it this easily for me. If any of my files where compromised, well whatever, a few holiday pictures or some itineraries.<p>The legal responsibility is put on Dropbox to keep your stuff safe, but I think the "common sense" responsibility is put on the user to decide whether s/he thinks dropbox is the place for a specific file.
评论 #2973421 未加载
评论 #2974100 未加载
kermitthehermit超过 13 年前
It's not even close to dropbox.<p>It's supposed to have more features like detecting when a file was also changed locally and remote and create a new file from the remote file.<p>It seems very fragile and I wouldn't trust it to backup my data somewhere.
jeza超过 13 年前
I used rsync to sync files I was working on to a server &#62;10 years ago. Only difference is that it can detect changes to file locally then update the server. To retrieve updates from the server, it relies on cron to poll the server, rather than implement some kind of push notifications. That said, it's always nice to ensure people are aware of what alternatives exist.
andreasvc超过 13 年前
This approach seems to overlook the bigger picture which is that Dropbox makes sure it doesn't lose your data. Aside from that the web interface and dealing with conflicts is an important issue. Just imitating the syncing is not going to cut it, and if you're not outsourcing the storage it rather defeats the purpose of not having to worry about the data anymore.
gks超过 13 年前
People should check out Strongspace (<a href="https://www.strongspace.com/" rel="nofollow">https://www.strongspace.com/</a>)<p>Combined with their OS X app it makes a reasonably compelling alternative for mac users.<p><a href="http://blog.strongspace.com/announcing-strongspace-app-for-the-mac" rel="nofollow">http://blog.strongspace.com/announcing-strongspace-app-for-t...</a>
nico_h超过 13 年前
The site looks exctly like <a href="http://jekyllrb.com/" rel="nofollow">http://jekyllrb.com/</a> . Are the project related ?
roel_v超过 13 年前
Or, use AeroFS and get something that actually works like Dropbox, and not what somebody who has only read a description of what Dropbox does thinks it does.<p>(also, I lol'ed at "vetted by the community as being 'a good idea'" and backing that put with a screenshot of a Reddit post (of all places) where a couple of people say 'yeah that's the ticket')
评论 #2973256 未加载
评论 #2973226 未加载
nikcub超过 13 年前
co-incidentally, I wrote a dropbox replacement this week using AppEngine. It is just a webdav server with a simple web interface.<p>I will release the code at some point this weekend
willvarfar超过 13 年前
I'd like to see compression, anonymity and encryption built into the storage.<p>And de-dupe. This is not a contrary aim from the compression, anonymity and encryption bit.
评论 #2972808 未加载
evantahler超过 13 年前
Try one in Ruby? <a href="https://github.com/evantahler/synchzor" rel="nofollow">https://github.com/evantahler/synchzor</a>
executive超过 13 年前
Why would I want a login page that lets anyone login to any account without a password?
Ingaz超过 13 年前
Thanks.<p>I will propose do something like this on my work.<p>Even if it's not practical, it will be fun to implement it.
nico_h超过 13 年前
the site is at <a href="http://lipsync.it/" rel="nofollow">http://lipsync.it/</a>
beagle3超过 13 年前
sparkleshare is much closer to dropbox. Mac and Linux only for now, git back-end.
rdl超过 13 年前
Good luck getting it to work for mobile apps built to Dropbox's API, which is my main use of dropbox.
hackermom超过 13 年前
I do this myself on my OpenBSD server by simply using an SFTP-only account that has its home directory set to a virtual filesystem that uses encryption through the svnd(4) node. If I want to move the entire encrypted filesystem to another server or so I just copy the file its contained in, and mount it there. Setting this up took about 5 minutes.
评论 #2974902 未加载