• 8 Posts
  • 170 Comments
Joined 1 year ago
cake
Cake day: August 10th, 2023

help-circle

  • I think the bigger issue is the copyright violation. You can’t just take others code and change the license. That’s not how it works.

    Stenzek did not do this. He either got permission to change the license of gpl pieces from their original author, or rewrote them. The edit by Leah in her post fails to acknowledge this, but it should be noted that she states the situation has a lot more nuance, and that she is trying to convince steznek to keep duckstation free software, rather thab threatening legal action against him.

    reached out to the bigger community for support.

    Like Near/Byuu did? And how did that go?

    Although, I do agree, and I would rather have free software. But it’s clear that Duckstation going proprietary is his attempt to boycott the retroarch developers.


  • UPDATE on 15 September. I’ve had a talk with Stenzek. This is an evolving situation with a lot more nuance to it than first glance. The decision to make DuckStation proprietary is still terrible, and I intend to rectify this; I’ve proposedh a number of ideas to Stenzek for how to effectively retain DuckStation as a free software project. If this is unsuccessful, I’ll fully fork it myself (from prior to the re-licensing) and probably find people in the PSX scene willing to help maintain it (in that scenario, my role will only be to facilitate and provide infrastructure, while not having an active role in core development, as I already have my Libreboot project which takes all of my time). I simply wish to prevent what is currently the best emulator of its kind becoming proprietary software.

    I hope she’s aware of why the Duckstation dev decided to go proprietary: An ongoing harassment campaign by Retroarch.

    There is a post by Near/Byuu that documents some of the retroarch developers problems, and some of it is especially damning. I read through some of the leaked IRC chats, and they refer to Near by homophobic and racial slurs (the n word, yes), and this behavior clearly hasn’t stopped, given Steznek’s abrupt and harsh reaction.

    On another thread related to this, I mentioned that many people theorize that Talreth (developer of AetherX2, PS2 emulator for android), and Steznek (Duckstation) are the same person. Although there is not hard evidence that they are the same person, their stories parallel in that both of them took code offline because of persistent harassment.

    Leah Rowe taking over a fork of Duckstation is nice, but it doesn’t really do anything. People were already going to fork Duckstation, and the Retroarch team did — in the form of SwanStation.

    She notes this in the email she sends:

    I would also point out that a fork of DuckStation does indeed exist:

    https://www.libretro.com/index.php/category/swanstation/

    I posted about all of this on my Mastodon. Please see the following post:

    https://mas.to/@libreleah/113131594753424867

    Unless the DuckStation author changes the project back to GPL, I would suggest that you all boycott the project, and tell others to do the same; you could send all future contributions to SwanStation instead, which is part of libretro. I would suggest that all future works go to a fork (could be SwanStation), instead of DuckStation, while still permitting Stanzek to contribute; this way, any future abusive re-licensing could not realistically occur. The reason I say this, is because based on my own research, it seems that Stanzek’s bios against the GPL has existed for some time, so I’m uncertain as to whether he could be trusted in charge of a public project.

    But, in the github reply by stenzek

    I find it especially ironic, considering when the GPL was actually violated on multiple occasions, even as recently as a few months ago, nobody ever takes issue with that.

    I like free software too, but this stuff doesn’t exist in a vacuum. I think this and her attempts at action, even with the edit to the post, are premature. Her taking over a fork of Duckstation is nice, but I think she, a transwoman, needs to remember why the Retroarch devs harassed the shit out of Near/Byuu: Because they were nonbinary.

    If she does decided to maintain a fork of Duckstation, I hope she has a plan that allows her to avoid falling victim to the same harassment that eliminated Near, Talreth, and Steznek. Because while a Playstation emulator is nice to have, Libreboot is essential to obtaining a truly free software society.





  • So, you might be misunderstanding how BTRFS snapshots work.

    A BTRFS snapshot is not a complete copy of the system, but rather, merely a recording point, and only CHANGES between the current system and the snapshotted system actually take up space. Like, if you snapshot a system, and then install 1 GB of updates, that snapshot only takes up that 1GB of differences in the system.

    It’s exactly because of this, that it’s somewhat difficult to shuffle BTRFS snapshots around.

    So, you can use BTRFS send/receive to send subvolumes to other btrfs devices.

    So, snapshots are really just a subvolume that only takes up the difference between your main subvolume that you use, and the snapshot subvolume. You can use btrfs send/receive to send them them to another btrfs partition… but I don’t know if sending subsequent backups will deduplicate data properly.

    What you might want instead, are rsync backups. Timeshift also supports rsync backups, which copy all the data over to any device using rsync for the initial backup, but then use hardlinks to store only the changes between the backups for subsequent backups. Similar to btrfs — but simpler, is my understanding.


  • Because forgejo’s ssh isn’t for a normal ssh service, but rather so that users can access git over ssh.

    Now technically, a bastion should work, but it’s not really what people want when they are trying to set up git over ssh. Since git/ssh is a service, rather than an administrative tool, why shouldn’t it be configured within the other tools used for exposes services? (Reverse proxy/caddy).

    And in addition to that, people most probably want git/ssh to be available publicly, which a bastion host doesn’t do.


  • So based on what you’ve said in the comments, I am guessing you are managing all your users with Nixos, in the Nixos config, and want to share these users to other services?

    Yeah, I don’t even know sharing Unix users is possible. EDIT: It seems to be based on comments below.

    But what I do know is possible, is for Unix/Linux to get it’s users from LDAP. Even sudo is able to read from LDAP, and use LDAP groups to authorize users as being able to sudo.

    Setting these up on Nixos is trivial. You can use the users.ldap set of options on Nixos to configure authentication against an external LDAP user. Then, you can configure sudo

    After all of that, you could declaratively configure an LDAP server using Nixos, including setting up users. For example, it looks like you can configure users and groups fro the kanidm ldap server

    Or you could have a config file for the openldap server

    RE: Manage auth at the reverse proxy: If you use Authentik as your LDAP server, it can reverse proxy services and auth users at that step. A common setup I’ve seen is to run another reverse proxy in front of authentik, and then just point that reverse proxy at authentik, and then use authentik to reverse proxy just the services you want behind a login page.