• 1 Post
  • 101 Comments
Joined 1 year ago
cake
Cake day: July 14th, 2023

help-circle


  • Literally none of those freedoms were impacted. Everyone is still free to use the program as they wish, fork it, make changes, etc… Linux doesn’t have a new license that says “anyone but Russians” can use it.

    he then followed up by gloating about Russian maintainers

    How did he gloat? He explained the change. If your complaint is that he was abrasive, I feel like you’re not familiar with Linus.

    Ok, lots of Russian trolls out and about.
    
    It's entirely clear why the change was done, it's not getting
    reverted, and using multiple random anonymous accounts to try to
    "grass root" it by Russian troll factories isn't going to change
    anything.
    
    And FYI for the actual innocent bystanders who aren't troll farm
    accounts - the "various compliance requirements" are not just a US
    thing.
    
    If you haven't heard of Russian sanctions yet, you should try to read
    the news some day.  And by "news", I don't mean Russian
    state-sponsored spam.
    
    As to sending me a revert patch - please use whatever mush you call
    brains. I'm Finnish. Did you think I'd be *supporting* Russian
    aggression? Apparently it's not just lack of real news, it's lack of
    history knowledge too.
    

    Sounds a lot more like he’s frustrated than delighted to me.

    Calling your former volunteer contributors bots

    He didn’t call the contributors bots.

    He called the people submitting reverts and complaining about those maintainers, who weren’t contributors themselves, “troll farm accounts.”

    and state assets because of their home country

    When did he call anyone a state asset? To be clear, being a troll or a paid actor doesn’t make you someone’s property.

    He also explained that this was a legal matter:

    > Again -- are you under any sort of NDA not to even refer to a list of
    > these countries?
    
    No, but I'm not a lawyer, so I'm not going to go into the details that
    I - and other maintainers - were told by lawyers.
    
    I'm also not going to start discussing legal issues with random
    internet people who I seriously suspect are paid actors and/or have
    been riled up by them.
    

  • First, you’re acting like the decision was made by Linus or another member of the team and that they weren’t following the law.

    Second, even if that weren’t the case, it’s still completely free. Unless you can name one of the following freedoms that was impacted by those actions:

    • Freedom 0: The freedom to use the program for any purpose.
    • Freedom 1: The freedom to study how the program works, and change it to make it do what you wish.
    • Freedom 2: The freedom to redistribute and make copies so you can help your neighbor.
    • Freedom 3: The freedom to improve the program, and release your improvements (and modified versions in general) to the public, so that the whole community benefits.








  • I made a typo in my original question: I was afraid of taking the services offline, not online.

    Gotcha, that makes more sense.

    If you try to run the reverse proxy on the same server and port that an existing service is using (e.g., port 80), then you’ll run into issues. You could also run into conflicts with the ports the services themselves use. Likewise if you use the same outbound port from your router. But IME those issues will mostly stop the new services from starting - you’d have to stop the services or restart your machine for the new service to have a chance to grab the ports while they were unused. Otherwise I can’t think of any issues.


  • I’m afraid that when I install a reverse proxy, it’ll take my other stuff online and causes me various headaches that I’m not really in the headspace for at the moment.

    If you don’t configure your other services in the reverse proxy then you have nothing to worry about. I don’t know of any proxy that auto discovers services and routes to them by default. (Traefik does something like this with Docker services, but they need Docker labels and to be on the same Docker network as Traefik, and you’re the one configuring both of those things.)

    Are you running this on your local network? If so, then unless you forward a port to your server on the port your reverse proxy is serving from, it’ll only be accessible from the local network. This means you can either keep it that way (and VPN in to access it) or test it by connecting directly to your server on that port and confirm that it’s working as expected before forwarding the port.



  • I don’t know that a newer drive cloner will necessarily be faster. Personally, if I’d successfully used the one I already have and wasn’t concerned about it having been damaged (mainly due to heat or moisture) then I would use it instead. If it might be damaged or had given me issues, I’d get a new one.

    After replacing all of the drives there is something you’ll need to do to tell it to use their full capacity. From reading an answer to this post, it looks like what you’ll need to do is to select “Change RAID Mode,” then keep RAID 1 selected, keep the same disks, and then on the next screen move the slider to use the drives’ full capacities.


  • upper capacity

    There may be an upper limit, but on Amazon there is a 72 TB version that would have to come with at least 18 TB drives. If 18 TB is fine, 20 TB is also probably fine, but I couldn’t find any reports by people saying they’d loaded 20 TB drives into theirs without issue.

    procedure

    You could also clone them yourself, but you’d want to put the NAS into read only mode or take it offline first.

    I think cloning drives is generally faster than rebuilding them in RAID, as well as easier on the drives, but my personal experience with RAID is very limited.

    Basically, what I’d do is:

    1. Take the NAS offline or make it read-only.
    2. Pull drive 0 from the array
    3. Clone it
    4. Replace drive 0 with your clone
    5. Pull drive 2 (from the other mirrored pair) from the array
    6. Clone it
    7. Replace drive 2 with your clone
    8. Clone drive 0 again, then replace drive 1 with your clone
    9. Clone drive 2 again, then replace drive 3 with your clone
    10. Put the NAS back online or make it read-write again.

    In terms of timing… I have a Sabrent offline cloning hub (about $50 on Amazon), and it copies data at 60 Mbps, meaning it’d take about 9 hours per clone. Startech makes a similar device ($96 on Amazon, that allegedly clones data at 466 Mbps (28 GB per minute), meaning each clone would take 2.5 hours… but people report it being just as slow as the Sabrent.

    Also, if you bought two offline cloning devices, you could do steps 1-3 and 4-6 simultaneously, and do the same again with steps 7-8.

    I’m not sure how long it would take RAID to rebuild a pulled drive, but my understanding is that it’s going to be fastest with RAID 1. And if you don’t want to make the NAS read-only while you clone the drives, it’s probably your only option, anyway.