14 comments

  • Panino5 hours ago
    I&#x27;ve been using openrsync here and there since it was announced and it&#x27;s definitely improved over time. I&#x27;m looking forward to when I can use it exclusively.<p>The one place in my usage where it doesn&#x27;t match Samba rsync is with the following:<p>openrsync --rsync-path=openrsync -av -e ssh &#x2F;etc&#x2F;services example.com:&#x2F;tmp&#x2F;services<p>I would expect openrsync to create a remote file &#x2F;tmp&#x2F;services, but instead it creates &#x2F;tmp&#x2F;services&#x2F;services.<p>Normal directory mirroring as in <i>-av -e ssh &#x2F;path&#x2F;to&#x2F;src&#x2F; example.com:&#x2F;path&#x2F;to&#x2F;dst&#x2F;</i> works as it does with Samba rsync.
    • wtetzner3 hours ago
      &gt; The one place in my usage where it doesn&#x27;t match Samba rsync is with the following:<p>&gt; openrsync --rsync-path=openrsync -av -e ssh &#x2F;etc&#x2F;services example.com:&#x2F;tmp&#x2F;services<p>This appears to match &quot;normal&quot; `rsync` behavior as well. I think you need a trailing slash after `services` to sync only the contents.<p>EDIT: actually my &quot;normal&quot; rsync <i>is</i> openrsync on macOS...
    • genxy5 hours ago
      Was there already a &#x2F;tmp&#x2F;services directory on the dest?<p>One of the biggest points of confusion with rsync is how directories and trailing slashes are handled.
      • anyfoo3 hours ago
        I hear that a lot, but I familiarized myself with it <i>once</i> and ever since it makes a lot of sense to me.<p>Source ending in “&#x2F;“: You want what’s inside. Source not ending in “&#x2F;“: You want the thing (i.e. directory itself). For the destination, it does not matter whether it ends in “&#x2F;“ or not, but for consistency I like adding a “&#x2F;“ anyway (I want to put thing inside the directory).
        • linsomniac33 minutes ago
          Yes, the nice thing about dest having a trailing &quot;&#x2F;&quot; is that if it exists and is NOT a directory, you are alerted right away.
      • eichin3 hours ago
        It&#x27;s a big source of confusion with <i>cp</i>. One of the UI reasons to use rsync (for mundane non-remote copying) is that it <i>doesn&#x27;t</i> do different things based on what&#x27;s present on the target.
      • Panino4 hours ago
        &gt; Was there already a &#x2F;tmp&#x2F;services directory on the dest?<p>No. And just to make sure, I ran a quick &#x27;rm -rf &#x2F;tmp&#x2F;services&#x27; on the remote host, then re-ran openrsync on the client. Same result. This is OpenBSD 7.9 on both sides.<p>And I 100% agree about trailing slashes.
    • hnarn4 hours ago
      &gt; I would expect openrsync to create a remote file &#x2F;tmp&#x2F;services, but instead it creates &#x2F;tmp&#x2F;services&#x2F;services.<p>As someone who has also suffered uncountable years of abuse from rsync, I understand the impulse, but I think it makes a lot more sense (and is a safer default) to create a second ”services”.<p>If we have a chance to change rsync defaults to something less insane and save future generations from this mess I think we should.
      • kbenson4 hours ago
        We don&#x27;t, since we&#x27;re not implementing a UI from scratch, we&#x27;re matching something else.<p>Of the two possible worlds where in one this reimplementation matches what some see as annoyances in the interface or in another they mostly match the interface except for a few cases where the purposefully diverge (for no good technical reason), IMO the latter is far worse and causes more enexpected behavior.<p>At most, add a special flag to opt into different default behavior so nobody is surprised by running the same command on different systems and getting different behavior.
    • hilsdev3 hours ago
      If you use a trailing slash on the source it copies from the directory, if you omit the trailing slash it copies the directory itself. AFAIK this is pretty standard across POSIX tools
      • SoftTalker1 hour ago
        It&#x27;s not, for example cp -R doesn&#x27;t change behavior on the basis of a trailing slash on directory names.
  • denysvitali6 hours ago
    There&#x27;s also a Go implementation by Michael Stapelberg &#x2F; the Gokrazy team: <a href="https:&#x2F;&#x2F;github.com&#x2F;gokrazy&#x2F;rsync" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;gokrazy&#x2F;rsync</a>
  • salvesefu5 hours ago
    For those needing context for the development of this package; this project is presently being developed as part of a RPKI validator.<p><a href="https:&#x2F;&#x2F;medium.com&#x2F;@jobsnijders&#x2F;a-proposal-for-a-new-rpki-validator-openbsd-rpki-client-1-15b74e7a3f65" rel="nofollow">https:&#x2F;&#x2F;medium.com&#x2F;@jobsnijders&#x2F;a-proposal-for-a-new-rpki-va...</a>
  • onedognight3 hours ago
    They don’t support any recent rsync protocol, so there’s no 64bit timestamp support, so you can never actually sync metadata across newer filesystems.
  • thefilmore6 hours ago
    This is the version used in macOS since 15.0.
    • mrdomino-5 hours ago
      Was it 15.0? I seem to recall it coming in one of the minor point releases in the 15.x line - and I remember it breaking some scripts mysteriously.<p>EDIT: ah, fun: they did include it in 15.0, but they decided to save the breaking change that removed backwards compatibility for 15.4. <a href="https:&#x2F;&#x2F;apple.stackexchange.com&#x2F;a&#x2F;479297" rel="nofollow">https:&#x2F;&#x2F;apple.stackexchange.com&#x2F;a&#x2F;479297</a>
  • Bender8 hours ago
    <i>The actual work of porting is matching the security features provided by OpenBSD&#x27;s pledge(2) and unveil(2). These are critical elements to the functionality of the system. Without them, your system accepts arbitrary data from the public network.</i><p><a href="https:&#x2F;&#x2F;justine.lol&#x2F;pledge&#x2F;" rel="nofollow">https:&#x2F;&#x2F;justine.lol&#x2F;pledge&#x2F;</a><p>I am not seeing pledge on Alpine Linux in edge. Have people been testing Pledge on Linux? Did I perhaps misunderstand the risk of using Openrsync without pledge? Or is this article just for OpenBSD users?
    • saidnooneever5 hours ago
      Linux has no such features as pledge or unveil, nor capsicum. it has cgroups, namespaces and a mess ofnother things u need to combine to try and do similar things. (it was built iteratively as many systems interacting and being combined to form &#x27;sandboxing&#x27; or isolation&#x2F;limiting of capabilities rather than specific isolation as an entire concept with specific system calls and kernel paths to enable it).<p>there might be newer stuff in linux land now i see comments about landlock but i assume those will build on the linux primitives rather than whole new ones. - total assumption there but it would seem logical to reuse rather than make new.<p>part of likely what they mean by &#x27;mess&#x27; is that its all over the place. many different ways to try and lock things down. hard to pick what is best etc. without thoroughly diving into the different subsystems entirely. (as opposed to just have 1 or 2 relatively simple system calls)
      • thomashabets25 hours ago
        No, landlock is a separate thing. It&#x27;s the first of its kind on Linux that doesn&#x27;t completely suck, like seccomp does (<a href="https:&#x2F;&#x2F;blog.habets.se&#x2F;2022&#x2F;03&#x2F;seccomp-unsafe-at-any-speed.html" rel="nofollow">https:&#x2F;&#x2F;blog.habets.se&#x2F;2022&#x2F;03&#x2F;seccomp-unsafe-at-any-speed.h...</a>).
    • e12e7 hours ago
      From above your quote:<p>&gt; The only officially-supported operating system is OpenBSD, as this has considerable security features.<p>And below your quote:<p>&gt; This is possible (I think?) with FreeBSD&#x27;s Capsicum, but Linux&#x27;s security facilities are a mess, and will take an expert hand to properly secure.<p>It is portable in the sense that it compiles and runs, not in the sense that it has the same security features.<p>I&#x27;d love to see pledge&#x2F;unveil on (upstream) Linux - but I&#x27;m not holding my breath.
      • papercrane6 hours ago
        &gt; I&#x27;d love to see pledge&#x2F;unveil on (upstream) Linux - but I&#x27;m not holding my breath<p>There is Landlock now, I believe it would be possible to implement unveil and pledge on top of that.
        • e12e1 hour ago
          Apparently someone tried wrapping landlock in unveil:<p><a href="https:&#x2F;&#x2F;clehaxze.tw&#x2F;gemlog&#x2F;2022&#x2F;04-02-landlock-unveil-experimental-unveil2-implementation-for-linux.gmi" rel="nofollow">https:&#x2F;&#x2F;clehaxze.tw&#x2F;gemlog&#x2F;2022&#x2F;04-02-landlock-unveil-experi...</a><p><a href="https:&#x2F;&#x2F;github.com&#x2F;marty1885&#x2F;landlock-unveil" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;marty1885&#x2F;landlock-unveil</a>
        • isityettime2 hours ago
          One of HN&#x27;s favorite hackers has done that: <a href="https:&#x2F;&#x2F;justine.lol&#x2F;pledge&#x2F;" rel="nofollow">https:&#x2F;&#x2F;justine.lol&#x2F;pledge&#x2F;</a><p>There was a discussion here about it a few years ago: <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=32096801">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=32096801</a>
      • Bender7 hours ago
        Ok that makes more sense, thankyou.
    • justinsaccount5 hours ago
      that quote seems to be a bit of an oversimplification to the point of being completely wrong.<p>&gt; Without them, your system accepts arbitrary data from the public network.<p>Neither of these features change if you are accepting arbitrary data from the public network. They limit what an exploited process can do. It&#x27;s explained properly in the &#x27;Security&#x27; section, so I&#x27;m not sure where this came from.
      • Bender5 hours ago
        <i>that quote seems to be a bit of an oversimplification to the point of being completely wrong.</i><p>Under Portability [1] I don&#x27;t have access to update that repo. I deleted my accounts when Microsoft took over.<p>[1] - <a href="https:&#x2F;&#x2F;github.com&#x2F;kristapsdz&#x2F;openrsync" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;kristapsdz&#x2F;openrsync</a>
  • skeledrew8 hours ago
    This attempt to avoid things that use AI is increasingly looking like some weird kind of reverse whack-a-mole where each targeted hole becomes radioactive after. Just grabbing some popcorn to watch.
    • ranger_danger8 hours ago
      I feel bad for people with the real name Claude.
      • xp847 hours ago
        Yeah, and we thought the most unlucky people were the ones named Alexa.
      • queuebert1 hour ago
        I don&#x27;t know, Claude Shannon did okay.
      • cozzyd4 hours ago
        I think it would be funny to have a grad student named Claude for the hilarious ambiguity it would create.
      • formerly_proven8 hours ago
        It took me quite some time to realize what an utterly presumptuous product name Claude Code actually is, but only because Shannon is rarely mentioned with his first name. It&#x27;s golden calf levels of hubris, even more so if you consider how incapable it was on release. It&#x27;s like renaming calc.exe Einstein. Incredibly poor taste, but entirely in line with AI tech bro mentality.
        • kstrauser6 hours ago
          That linkage never occurred to me, or, I suspect, them. Claude use to be a reasonably common name. I have an uncle Claude. Why do you believe they named it after Shannon in particular?
          • homebrewer5 hours ago
            It seems to be a widely repeated &quot;fact&quot; which can&#x27;t be traced to anything particularly authoritative:<p><a href="https:&#x2F;&#x2F;archive.is&#x2F;pt5fQ" rel="nofollow">https:&#x2F;&#x2F;archive.is&#x2F;pt5fQ</a><p><a href="https:&#x2F;&#x2F;britannica.com&#x2F;topic&#x2F;Claude-AI" rel="nofollow">https:&#x2F;&#x2F;britannica.com&#x2F;topic&#x2F;Claude-AI</a><p>Looks like the 2023 NYT article started it, and it uses this as reference:<p>&gt; depending on which employee you ask, was either a nerdy tribute to the 20th-century mathematician Claude Shannon<p>Personally I always associated it with the silent protagonist from GTA3.<p><a href="https:&#x2F;&#x2F;gta.fandom.com&#x2F;wiki&#x2F;Claude" rel="nofollow">https:&#x2F;&#x2F;gta.fandom.com&#x2F;wiki&#x2F;Claude</a>
      • 1over1375 hours ago
        Yeah, especially since most Americans don&#x27;t know how to properly pronounce Claude.
        • txru5 hours ago
          Hmm, Claude Shannon was an American (the model is ostensibly named after him), so maybe how he pronounced it would be the correct pronunciation.<p>That said, every language on earth will adapt foreign words into its phonology. The alternative would be to adopt the phonology of every language that loaned a word into your language.
    • reaghs4 hours ago
      Thanks for the heads-up! I wasn&#x27;t aware that Tridge is using Claude. I shall use Openrsync from now on.
    • einpoklum3 hours ago
      How about the attempt to avoid things that use AI promiscuously and start exhibiting bugs? :-(
      • skeledrew2 hours ago
        Push for better guardrails and QA structures. Avoidance helps nobody in the long run, and isn&#x27;t possible anyway without going completely cold turkey. Like literally in a few months every project worth using will directly or indirectly involve AI.
        • groundzeros20152 hours ago
          &gt; Avoidance helps nobody in the long run<p>What the hell? That’s the job.
    • echelon1 hour ago
      Wasting their precious limited time on this planet for performative hand wringing.<p>AI is only going to get better and better. Eventually manually writing software by hand with programming languages will be thought of as the punch-card phase of software development.<p>Do these people think we&#x27;ll be writing software in 200 years time? That anybody will be maintaining rsync, let alone this &quot;moral human hands only&quot; version of it?<p>The anti-AI lot are trying to make all AI content wear a Scarlett letter. I wish they would wear one themselves so that we could filter them from our timeline.<p>This &quot;effort&quot; is entirely wasted.
      • grebc43 minutes ago
        Your booster efforts are wasted.
      • 23hartr1 hour ago
        Ask your AI girlfriend how &quot;performative&quot; is usually used. AI boosters here are really deranged and dumb.<p>What &quot;effort&quot; do you make? I&#x27;m sure you only produce SEO slop garbage.
  • tptacek8 hours ago
    <i>rsync has specific running modes for the super-user. It also pumps arbitrary data from the network onto your file-system. openrsync is about 10 000 lines of C code: do you trust me not to make mistakes?</i><p>No, but that&#x27;s why almost nobody runs it outside of strict trust boundaries. This security section would make more sense if rsync was like curl, which routinely deals with hostile counterparties. If the other side of your rsync is hostile, you probably have bigger problems!<p>(I&#x27;m not an rpki person so I don&#x27;t know if there&#x27;s some part of that problem domain that changes this equation. I&#x27;m not dunking on the project, just saying this snagged me in the README).
    • cperciva7 hours ago
      <i>No, but that&#x27;s why almost nobody runs it outside of strict trust boundaries. This security section would make more sense if rsync was like curl, which routinely deals with hostile counterparties. If the other side of your rsync is hostile, you probably have bigger problems!</i><p>I disagree. While rsync is most often used to transfer data between &quot;friendly&quot; systems, it&#x27;s inherently crossing a security boundary. It&#x27;s important to make sure that an attacker can&#x27;t leverage it to transform the breach of one system into the breach of multiple systems.
      • eikenberry3 hours ago
        It is almost universally hooked up using ssh tunneling so ssh takes care of the security boundary and ssh is well trusted.
        • cperciva1 hour ago
          That solves the traffic tampering problem, but not the &quot;malicious peer&quot; problem. You want to be able to sync files without accidentally sharing root privileges.
    • delusional7 hours ago
      &gt; almost nobody runs it outside of strict trust boundaries.<p>I guess you can define &quot;strict&quot; however you want, but from what I saw ~10 years ago, most linux distros handled mirroring with rsync. That&#x27;s a lot of usage in a pretty core part of the foundational open source ecosystem.
      • tptacek6 hours ago
        OK, I agree, that&#x27;s bad.
      • akerl_6 hours ago
        Many distros use rsync for that but also support unencrypted HTTP.<p>They’re layering on checksums and signing such that they mostly don’t think about the trustworthiness of mirrors or the networks between them.
  • SubiculumCode4 hours ago
    I&#x27;m going to ask a question. I could ask chatgpt. I could Google it. I am asking a question because it is human to do so.<p>Ubuntu&#x27;s packaged rsync, is it Samba rsync? Why reimplement it?
    • tredre342 minutes ago
      Ubuntu&#x27;s rsync is samba rsync. It&#x27;s not part of the samba project per se, but it is made by the same guy and the official url is <a href="https:&#x2F;&#x2F;rsync.samba.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;rsync.samba.org&#x2F;</a> so it&#x27;s entirely fair to call it samba rsync in my opinion.
    • hideout_berlin3 hours ago
      samba is different topic
    • eichin2 hours ago
      it&#x27;s tridge rsync; samba is another project by the same guy. (rsync was originally a PhD thesis...)
  • triggis9 hours ago
    No-slop version for the sane of us<p>Context: <a href="https:&#x2F;&#x2F;mastodon.gamedev.place&#x2F;@JeremiahFieldhaven&#x2F;116654345332213390" rel="nofollow">https:&#x2F;&#x2F;mastodon.gamedev.place&#x2F;@JeremiahFieldhaven&#x2F;116654345...</a>
    • ranger_danger8 hours ago
      <a href="https:&#x2F;&#x2F;social.treehouse.systems&#x2F;@thesamesam&#x2F;116662824873341085" rel="nofollow">https:&#x2F;&#x2F;social.treehouse.systems&#x2F;@thesamesam&#x2F;116662824873341...</a>
      • akerl_8 hours ago
        +1 to this. Other than people&#x27;s reflexive anger or fear about AI coming for their code, I don&#x27;t see anything to suggest that these are bugs that are due to the inclusion of AI vs bugs in a program with a bunch of complex interop with the filesystem and network.
        • 48terry3 hours ago
          Yeah, nothing to suggest that here. We went from some commits every so often (because rsync was basically finished software) with a handful of issues a month, to &quot;a bajillion Claude commits then a release&quot; with a pile of issues within weeks, at least one of which is about how the goddamn thing <i>doesn&#x27;t build</i>.<p>I can&#x27;t possibly see a correlation.<p>Weird how 3.4.2. didn&#x27;t have a similar deluge of issue reports, though.
        • triggis8 hours ago
          In any case, it&#x27;s important to identify projects that are beginning to actively vibecode and clearly express position on this issue on various platforms so that authors and maintainers receive feedback. Even if this particular bug was not written by LLM in this particular case, it&#x27;s not a fact that the release does not include other regressions and that subsequent vibecoded versions will not include them &amp; new ones.
          • skeledrew7 hours ago
            &gt; it&#x27;s not a fact that the release does not include other regressions and [...]<p>Are you listening to yourself? The same exact thing also has applied, applies and will continue to apply to manually written code, in perpetuity. There&#x27;s nothing new under the sun here; regressions happen when there&#x27;s change, and the only way to mitigate is to have healthy feedback loops.
          • stsquad8 hours ago
            Do not going harassing developers because you think they are doing it wrong. If you can do better and don&#x27;t want to actually contribute to the upstream you are always free to fork it.
            • margalabargala4 hours ago
              That&#x27;s literally what this thread is about.
              • akerl_4 hours ago
                Openrsync is a project that’s existed for a long time and is a great example of people building what they want.<p>This thread has people suggesting it’s good or important to go tell open source devs they’re using bad tools.<p>The former is great. The latter is not.
          • akerl_8 hours ago
            No. It&#x27;s not important. It&#x27;s actually pretty shitty to go around looking for projects and then telling the maintainers you disagree with how they develop.
          • applfanboysbgon6 hours ago
            Friendly reminder that volunteer maintainers owe you literally not a single goddamn thing. I absolutely want no AI slop in my commercial products that I pay money for, but your feedback is not important to people you are not paying to develop software for you. They gave away not only their software but the source code for free; if you have a problem with it, fork it. Which is something you can do with their generous allowance, and that is an allowance any maintainer can instead choose to not bother themselves with if publishing their code for free leads themselves to dealing with entitled internet commenters harassing them with complaints.
            • teddyh5 hours ago
              &gt; <i>Friendly reminder that volunteer maintainers owe you literally not a single goddamn thing.</i><p>Technically true. However, I also do not owe them my silence.
  • throwaway274483 hours ago
    I&#x27;m confused. Isn&#x27;t rsync already free software? What are we doing here. Why are we trying to cuck ourselves for capital.<p>I like open bsd but this just seems like burning cash
    • somat2 hours ago
      My understanding is that much of the point of openrsync is to create a second implementation of a protocol so the standards bodies don&#x27;t balk at including it in their standards.<p>Or to put it more concretely, people working on the rpki standard(who happened to also be openbsd devs) wanted to use rsync to transfer bulk data. The standards body was hesitant, while rsync is ostensibly a documented protocol, there was only one implementation. So in true openbsd fashion they rolled up their sleeves and wrote that second implementation.<p>On use, there is nothing wrong with openrsync, however it may never hit feature parity with rsync, that is not a goal of the project, they want a specific subset of rsync features to support their rpki needs. If anyone else finds this useful that is great. So I suspect users will be those who want a bsd licensed rsync(apple) or them who are willing to give up features for openbsd quality code(myself).
  • jmclnx9 hours ago
    I have not checked with OpenBSD 7.9, but as of 7.8 it did not support --exclude or -z. But outside of that openrsync works great.<p>(EDIT: --exclude is now supported on 7.9. Not sure when that was added, nice!)<p>But seems avoiding &quot;slop&quot; is getting very hard. I saw postfix now has a bit of AI code in it.<p><a href="https:&#x2F;&#x2F;mastodon.sdf.org&#x2F;@mrmasterkeyboard@mastodon.social&#x2F;116663069350165149" rel="nofollow">https:&#x2F;&#x2F;mastodon.sdf.org&#x2F;@mrmasterkeyboard@mastodon.social&#x2F;1...</a>
    • nineteen9998 hours ago
      Somewhat ironic Postfix has a record of no root&#x2F;RCE in the default install, where opensmptd hasn&#x27;t (CVE-2020-7247). Time will tell if it stays that way.
    • agwa8 hours ago
      Where do you see that about Postfix? I followed the links and the only thing I see is that AI is being used to <i>find</i> bugs, not write code.
      • jmclnx7 hours ago
        &gt;Claude assisted code found in external&#x2F;ibm-public&#x2F;postfix&#x2F;dist...<p>That is from the original post in the thread. Is that really due to LLM ? I do not know since I avoid AI as much as I can.<p>But the person also posted this link too:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;NetBSD&#x2F;src&#x2F;commit&#x2F;f764ddf4062e855f73fe2e31b9c378ddd0155a4e" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;NetBSD&#x2F;src&#x2F;commit&#x2F;f764ddf4062e855f73fe2e3...</a>
        • agwa7 hours ago
          Right, I read all that and I didn&#x27;t see anything to indicate that AI is being used to write code - just one person&#x27;s unsubstantiated claim.
          • jmclnx7 hours ago
            I did not look at details until I saw your post, but I tend to agree with you on this point.<p>But that is the odd thing, how to tell for sure if a LLM was used :)
    • Bender8 hours ago
      Exclude is very commonly used in automation jobs to avoid duplicating big git repos and other big files. I think that would be a show stopper for a number of people.
      • jmclnx7 hours ago
        I just tried openrsync(1) on OpenBSD 7.9, --exclude now works.<p>I have not tried using exclude in openrsync in a while, but I can see it now works on OpenBSD 7.9!
  • WD-428 hours ago
    What&#x27;s the deal with the name? Openrsync implies to me that it&#x27;s an open source alternative to a closed source program. But the original Rsync is GPL? Is this just the pushover license making it &quot;more open&quot;?
    • jtickle8 hours ago
      OpenBSD folks would consider the GPL to be less open due to the requirement to apply the GPL to any derivative works.
      • ranger_danger8 hours ago
        And GNU folks would say the GPL is actually the more open choice because it forces the project to <i>stay</i> open.<p>Two different ways of thinking about it I guess... it&#x27;s nice to have choices and I don&#x27;t think one is more or less &quot;correct&quot;, more a matter of opinion&#x2F;taste I guess.
        • gblargg6 hours ago
          It kind of reminds me of the equality of opportunity people versus the equality of outcome people. One sets the starting conditions for developers, the other the ending conditions for users.
          • brnt5 hours ago
            Since developers are a subset of users, it&#x27;s actually possible to calculate which is more open.
        • thayne3 hours ago
          I don&#x27;t think the FSF would say that. They prefer the GPL, because it prevents someone from making a closed derivative, but I haven&#x27;t seen them ever claim it is more open than &quot;permissive&quot; licenses.
        • isityettime2 hours ago
          GNU folks would probably not say that.<p>GNU folks would say that the GPL does more to protect the freedom of end users by guaranteeing their right to access the source code, whereas permissive licenses allow users to receive binaries, the source code corresponding to which is unavailable to them.<p>I&#x27;m not trying to be idly pedantic here, but to emphasize one of things I genuinely admire about the FSF, SFC, etc.: while they do have words, concepts, and terms of art they&#x27;re attached to, they&#x27;re actually pretty good at always explicitly tying their positions back to a specific and well-articulated vision of software freedom. They don&#x27;t usually get caught up in pure terminology (&quot;what is maximally open?&quot;, &quot;what is really free?&quot;). They tend to be clear about whose rights they aim to promote and protect and why, and the bigger picture that fits into.<p>Whether you agree with them or not, I think it&#x27;s a more defensible position than a shallow terminological squabble.<p>As someone that is somewhat aligned with those groups, I also want to say this: licenses are just tools for promoting freedom. It&#x27;s a question of strategy and tactics. All permissively licensed free software is still free software, and the vast majority of it undeniably contributes positively to software freedom on the whole. (The only concrete exceptions I can think of are uses of permissively licensed free software code to implement things like Intel&#x27;s Management Engine, DRM, maybe some Trusted Computing stuff.) OpenBSD is free software and it&#x27;s good shit. We should think of licensing questions like this as a friendly dispute among people who have all given generously to support software freedom.
        • gilrain8 hours ago
          &gt; more open choice because it forces the project<p>A true morality must be based on consent, not coercion. Humanity may not be there yet, and therein lies the argument for force (and thus copyleft); but the ultimate goal should always be to reduce its necessity.
          • datakan8 hours ago
            It’s not coercion. You’re free to not use it, or alternatively do what these folks did, write your own. Coercion would be forcing people to use it through some mechanism, which clearly isn’t possible with GPL.
          • skeledrew7 hours ago
            I see this, and the spiritual example that immediately comes to mind is that which is labeled as &quot;crime&quot;. Would it be more moral that a murderer must first consent to being judged and sentenced, or that there is a system which automatically comes into play to hopefully deter but also punish it when it happens?
          • jcelerier8 hours ago
            Allowing closed-source to exist is always the less moral choice for many reasons (one example being ecological sustainability)
          • kennywinker8 hours ago
            Is this not the paradox of tolerance restated in different terms?<p>BSD license is unrestricted, it tolerates taking open source and closing it, thus always being at risk of things closing down.<p>GPL license doesn’t tolerate taking from open source and closing it, thus ensuring things stay open.
            • ranger_danger4 hours ago
              The paradox clears itself up if you look at what tolerance actually is. It&#x27;s simply not interfering with people&#x27;s agency over themselves. Given that your right to self-agency doesn&#x27;t entitle you to restrict others&#x27; self-agency, behavior that does try restricting others&#x27; agency is automatically not included in &quot;tolerance.&quot;
            • KZerda8 hours ago
              The BSD license is why we have Valkey and not a purely closed-source Redis. It would have been much easier to perform the rugpull if Redis had initially been GPLed.
              • kennywinker7 hours ago
                On top of badreligion42’s point, that both licenses allow forking just as easily - don’t you have the rugpull part backwards?<p>Afaik BSD licensed stuff can be re-licensed under any more closed licenses at any time, where as to re-license GPL, you need consent from every single contributor.<p>But i’m not familiar with the redis-valkey story so, maybe there is some nuance i am missing?
                • KZerda7 hours ago
                  Redis started off as Free Software, but was switched to a source available license in version 7.4. The community promptly forked to Valkey, which is still under the BSD license. Since then, Redis shifted to AGPL 3, with contributor agreements, to try to ensure that they&#x27;re the only ones who can attempt to commercialize Redis.
                  • em-bee7 hours ago
                    AGPL makes commercializing harder only for people who fear the AGPL because they want to keep stuff for themselves. there is no problem commercializing it if you don&#x27;t mind sharing all your connected code. the only benefit redis has is that they can integrate non-free code in their hosting service, while the rest of us could not. since it is their work, i think it is reasonable that they have an advantage. it does not reduce my freedom as a user. it only hinders AWS and other big players from crushing redis.
              • badreligion428 hours ago
                And how exactly did the BSD license make creating Valkey easier? GPL and BSD licenses both have the source in the open. Anyone creating a fork, can easily do so for either BSD or GPL licensed projects. Since Redis is a database, which the user won&#x27;t be using a binary of, even using a fork of a supposedly GPL-licensed Redis would not require you to share your modifications with your user, same as BSD.
                • KZerda7 hours ago
                  The BSD license made forking Valkey easier because it ensures that everyone has equal footing. The GPL, especially with contributor license agreements and the like, makes it much more easy for a single party to control the direction of the product. For another example of this happening, look at MongoDB. It started out under the AGPL, but was rugpulled to a non-free license.
                  • akerl_7 hours ago
                    It feels like your actual beef here is with CLAs, which often are designed to allow the current maintainers to relicense.<p>CLAs are not an attribute of the GPL. They&#x27;re an agreement that can be applied to contributions to any codebase with any license.
                  • WD-427 hours ago
                    Mongo was already a centralized project. Technically open source agpl but I don’t remember it having a large developer community or really many contributions from outside mongo. When the rug pull happened I think simply most people didn’t care or moved on to equal (or better) alternatives. It’s not beloved software like Redis is.
                  • em-bee7 hours ago
                    <i>The BSD license made forking Valkey easier because it ensures that everyone has equal footing</i><p>equal footing on the license is what allowed AWS to crush the original creators of the products they host.<p>it&#x27;s a trade off.<p>the AGPL does not prevent a hosting service. it only prevents creating non-free addons. i see no problem with that. see also my other comment
    • ranger_danger8 hours ago
      Many projects closely associated with OpenBSD start with &quot;open&quot;... openssh, openbgpd, openntpd, opensmtpd etc.
      • SoftTalker5 hours ago
        Notable exception, OpenSSL already had the Open prefix so the OpenBSD project is called LibreSSL.
      • hamdingers8 hours ago
        Not many are reimplementations of existing, much more popular, already open source projects.
        • throw0101a8 hours ago
          OpenSSH was a &#x27;reaction&#x27; to the original SSH(.com) code getting closed source:<p>&gt; <i>OpenSSH originated in 1999 as a fork of Björn Grönvall&#x27;s OSSH, which derived from Tatu Ylönen&#x27;s original SSH 1.2.12 release, the last version distributed under a license permitting open-source redistribution before Ylönen&#x27;s subsequent software became proprietary under SSH Communications Security.[4]</i><p>* <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;OpenSSH" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;OpenSSH</a><p>It was probably the second thing with the Open— prefix by this group of developers, OpenBSD itself being the first. They simply ran with the naming convention. OpenBGP&#x2F;OSPF were developed as alternatives to Quagga (GPL).
          • hamdingers6 hours ago
            Is rsync going closed source? If not, how is that the same thing?
            • kstrauser6 hours ago
              No. The name only means it’s made by the OpenBSD team, nothing more. If they made their own Python port, it’d be called OpenPython, even though the original is FOSS.
              • hamdingers5 hours ago
                So is OpenSUSE made by the BSD team? OpenOffice? OpenShift? OpenCV? OpenAI?<p>It is not reasonable to claim this prefix unambiguously refers to the OpenBSD team. I do not understand why so many in this thread are pretending this isn&#x27;t a confusing choice.
                • bentley5 hours ago
                  Nobody ever claimed that “Open” is a prefix used unambiguously by only one group of people ever.<p>In fact, your insistence that “Open” can only be used by projects that are replacing proprietary software is itself very odd.<p>OpenBSD itself has had its name for thirty years, and is not named for being an “open source” implementation of a proprietary OS.
                  • hamdingers5 hours ago
                    The person I replied to said the &quot;open&quot; prefix means it&#x27;s made by the OpenBSD team and I am responding to that.<p>Do not invent arguments that I did not make. I have only said that naming it openrsync when rsync already exists and is &quot;open&quot; in the general sense is confusing.<p>I find the negative reactions to this observation very confusing, especially yours, but I see that you&#x27;re an OpenBSD developer so that explains your bias.<p>Edit: and now these same people are backtracking to agree with me that &quot;open&quot; is ambiguous, this place never ceases to amaze
                    • throw0101a4 hours ago
                      &gt; <i>The person I replied to said the &quot;open&quot; prefix means it&#x27;s made by the OpenBSD team and I am responding to that.</i><p>What was said is that the OpenBSD operating system folks chose to use the Open— prefix for all their other projects (&quot;They simply ran with the naming convention.&quot;). What was <i>not said</i> was that all Open— prefixed projects were from them.
                    • kstrauser4 hours ago
                      You’re inventing an argument I didn’t make. OpenBSD doesn’t own “open”. Literally no one is saying that. What I did say is that openrsync is named that because the OpenBSD team names their projects that way. The “open” <i>in this project</i> means that it came from OpenBSD, not that that it’s in contrast to rsync being proprietary (which it isn’t).
            • throw0101a4 hours ago
              &gt; <i>Is rsync going closed source? If not, how is that the same thing?</i><p>Not closed source, but with rsync 3.0 it changed its license to GPL3, which a lot of folks don&#x27;t like: BSD&#x2F;MIT licenses have zero limitations on use and distribution, GPL2 (rsync 1.x, 2.x) <i>forces</i> one to release code, GPL3 (rsync ≥3.x) adds further restrictions.<p>Some folks want to distribute code with as few restrictions as possible. Other folks have a great good&#x2F;goal in mind (e.g., &#x27;all software is open source&#x27;) and so add &#x27;local restrictions&#x27; to hopefully achieve greater non-restrictions.
            • bentley6 hours ago
              OpenBSD didn’t get its name from NetBSD going closed source.
              • StayTrue4 hours ago
                Historically speaking, it may have meant open to poorly socialized developers.
        • gpvos7 hours ago
          Which aren&#x27;t? It seems all (or most) are.
  • chasil5 hours ago
    There is also a (stub) web page:<p><a href="https:&#x2F;&#x2F;www.openrsync.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.openrsync.org&#x2F;</a><p>The problem with this fragmentation of rsync is that Apple and Android will prefer it, but the Linux and greater GPL world will adhere to the original implantation due to inertia. Power users will just have to know the quirks of each version.<p>The only way to stop this is for the original author(s) to release this under a BSD license.<p>Edit: For those assuming equivalent&#x2F;identical behavior, study these words carefully: &quot;accepts only a subset of rsync&#x27;s command-line arguments.&quot;
    • yjftsjthsd-h4 hours ago
      &gt; The only way to stop this is for the original author(s) to release this under a BSD license.<p>Would that stop it? My understanding was that at least OpenBSD tended do redo things for technical reasons, not just licensing
    • eikenberry3 hours ago
      The only option should not to be to take away user freedoms. BSD licenses are popular with proprietary software writers because they can use it without any of the restrictions that seek to preserve the rights of the end user. Instead you get proprietary software stacks like Apple and Android that seek to lock the users out of anything not granted by the company.<p>The correct way to stop this is to file bugs against the software for not matching the de-facto standard of the copied software.
    • spauldo5 hours ago
      It&#x27;s really no different than every other BSD utility (and SysV utility, if you&#x27;re running one of those) being different than the GNU ones. We&#x27;ve coped with it for fifty years at this point.
    • qalmakka5 hours ago
      Basically like GNU Tar&#x2F;CPIO and BSD Tar&#x2F;CPIO. I&#x27;ve largely standardised towards using the bsd variant everywhere (especially since now even Windows ships it and it handles lots of other archive formats using the `tar` command) but it&#x27;s always a pain to install it everywhere
      • yjftsjthsd-h4 hours ago
        Yeah, I&#x27;m leaning towards strongly preferring bsdtar since it&#x27;s happy to work on e.g. zip files:) Does it have any real downsides?
        • SoftTalker1 hour ago
          Limits on the length of path and file names in the archive.<p>Edit: I see that they switched from ustar to pax as the default format in OpenBSD 7.6, so I guess this isn&#x27;t true any longer.
    • asveikau4 hours ago
      &gt; Apple and Android will prefer it,<p>My thought upon reading this is why would Apple or Android bother including rsync? I&#x27;ve noticed that I&#x27;ve needed to install it manually on fresh installs of Debian, FreeBSD...<p>But then, I just checked a recent Mac that I don&#x27;t use much and haven&#x27;t put much on, and it&#x27;s installed.