• 0 Posts
  • 21 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle






  • Perhaps my recent NAS/home server build can serve as a bit of an inspiration for you:

    • AMD Ryzen 8500G (8 cores, much more powerful than your two CPUs, with iGPU)
    • Standard B650 mainboard, 32 GB RAM
    • 2 x used 10 TB HDDs in a ZFS pool (mainboard has 4x SATA ports)
    • Debian Bookworm with Docker containers for applications (containers should be more efficient than VMs).
    • Average power consumption of 19W. Usually cooled passively.

    I don’t think it’s more efficient to separate processing and storage so I’d only go for that if you want to play around with a cluster. I would also avoid SD cards as a root FS, as they tend to die early and catastrophically.






  • I don’t have a Mac Mini, but for always-on systems, the idle power consumption can become quite significant.

    • Gaming PCs can consume up to 100W (876 kWh / year).
    • My AMD B650 NAS consumes about 17W in idle (150 kWh / year).
    • A NUC / Mac Mini can idle as low as 5W (44 kWh / year).

    If you pay 0.30$/kWh, running your old 100W gaming PC all the time would cost you 263$ per year. My NAS is 45$ per year…

    It also depends on what you need/want from the machine. The Mac Mini doesn’t have any HDDs and can’t run a regular Linux distro, for example.



  • I’ve also recently built my own NAS and I’ve gone through similar considerations. One of my mayor decisions was not to use btrfs because it’s not recommended for Raid Z1/Raid 5. With that, I landed on ZFS and TrueNAS Scale. Note that RAID expansion should be landing in both very soon.

    Things with TrueNAS were pretty easy, very quick, and everything worked nicely. However, I noticed that it was constantly accessing the disks and preventing them from spinning down. I really wanted to keep the power consumption low (<20 W idle), so I eventually decided to just go with Vanilla Debian + ZFS. I can recommend that if you want to tinker with things yourself. Otherwise, I’d recommend TrueNAS Scale.

    As for migration, you might be able to create a degraded pool initially, copy over the data, and add the parity disk last. Raid expansion would ofc also help there…





  • The GPL (and AGPL) do place some restrictions on how you can integrate it into another application but this doesn’t have anything to do with commercial use.

    Basically, if you create a derivative work and publish/sell it, you also need to license it under the AGPL. In case of the AGPL it also applied if you use it to offer a service. But if you only use the unmodified version (same source code) and the intended application interfaces, this does not apply.

    Running the application on Windows is clearly allowed. The second case also sounds ok (allowing this is kinda the point of FOSS). However, if you create an improved version of PDFCreater, then you’ll need to publish it under the same AGPL license.


  • I’m not a legal expert, but the AGPL seems to be quite clear on this point:

    1. Basic Permissions.

    All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. […]

    You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. […]

    However, depending on the exact thing that they said, they may be in violation of the AGPL. Once they have given you (conveyed) a copy of the program, they cannot impose a license fee for the use of the software.

    1. Automatic Licensing of Downstream Recipients.

    Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. […]

    You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation […]