• 0 Posts
  • 25 Comments
Joined 2 years ago
cake
Cake day: June 28th, 2023

help-circle


  • When you read files from the ZFS filesystem it will automatically keep the files in RAM. This is called the ARC and it is why people frequently recommend having a lot of RAM with ZFS. The ARC is very effective, automatic, and has no risk because it only caches reads. A cache drive is a secondary ARC generally using a fast SSD. The problem is that it generally only helps performance when you are reading lots of small files multiple times. This is because ZFS does so well reading large files from HDD that it doesn’t make much of a difference.

    In short: If you already have the drive and want to play with the feature, go for it. But if your going to spend money on the drive, you will probably be better served spending it on more RAM.





  • Other people have already talked about why you are having performance issues with the Pi. As for a better NAS solution you will probably be better off with a used desktop PC from the last 10 years. If the computer doesn’t have enough SATA ports you can get a sata addon card or HBA (host buss adapter) addon card flashed in IT mode. You should be able to find a lot of options on eBay. Maybe people can chime in with specific models to look at.





  • Truenas has the primary focus of being a NAS. Running apps or VMs is more of a side thing. It can do these things fine, but because it’s not the primary focus it doesn’t get the same level of polish as the NAS aspects.

    My personal solution is to run Proxmox as the host OS with a Truenas VM. Any other services I want to run get to live in VMs or LXC containers. For example all my docker services run across 3 VMs with a docker swarm setup.




  • To make sure there is not a misunderstanding, the wattage of a PSU is not how much power it will draw. The wattage is how much is can supply. So if you have a 1000w PSU, but all your components draw 200w of power it will use about 200w of power.

    Additionally, if you plan to get a lot of HDDs in the future, do some research on power rails. Some PSUs are designed to only be able to supply a small amount of power to things like HDDs because most people only have 1 or 2.




  • As for food functionality it is very comparable to software remote control of a computer. There are 3 key features that stand out:

    • It does not rely on the target machine being booted into the OS. This means you can access it even if it crashes or locks up.
    • It can “push” the power button on the machine. This requires an accessory that plugs into the motherboard. So you can force a machine off or cold boot a system.
    • You can mount a boot ISO. This is like having a bootable flash drive in the target machine so you can install an OS remotely.

    Edit: Because this is essentially full access to the machine as if you where physically at it, it should be considered a security risk. Not saying that you need to be scared of it, but you should be aware of the risk and protect it from unauthorized access.




  • First based on everything I have ever heard, don’t host your own email server. If you want to learn it that’s fine, but don’t do it for something you actually rely on. My understanding it’s a constant miserable slog to keep it functioning.

    Second for getting started, get a cheap used computer and install Linux on it. Also be prepared to wipe it and install something different. Docker may be a good place to go next. You can find lots of guides online, there are tones of apps setup to run with docker you can test out. You could also explore virtual machines. Both have the advantage of making it easier to experiment with different things.