• 0 Posts
  • 11 Comments
Joined 1 year ago
cake
Cake day: July 12th, 2023

help-circle

  • I used Nextcloud to store and share sensitive information like insurance, identity and tax documents. Not a big deal if it was ever down for a while, but I didn’t trust it was hardened enough. Only other thing I was using it for was backups and I switched to S3 for that.

    I know what I’m doing and good at following best practice, etc. But at the end of the day I’m just a dude running docker. There’s too much to lose if there was ever a 0-day or I misconfigured something.









  • donnnnnnb@lemm.eetolinuxmemes@lemmy.worldBTW
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    1 year ago

    Gentoo uses portage, and portage uses ebuilds which are like recipes for compiling and installing software from source. Similar to FreeBSD ports. There are many user contributed ebuild repos out there, like the AUR but not as robust. Easy to add a repo with eselect-repository, but can’t search across repos on the package level until you add it.

    One big advantage of a source based distro is the ability to compile your software specifically for the processor your box is running on. Every other distribution uses safe CFLAGS and typically doesn’t enable additional optimizations for compatibility reasons.

    And like OP said, you can activate or disable just about any feature in your software. You can also build your system any way you want, like with musl instead of glibc, or OpenRC instead of systemd.