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

help-circle



  • You probably won’t be able to run an LTS kernel on a brand new PC that just hit the market. But using the most recent kernel for arch or a derivative like endevorOS should work after like a week maximum.

    I did have an issue like this on Ubuntu and its what made me actually start distro hopping since it worked fine on fedora and Arch using the latest kernels.


  • I was running xfce for a while on my old laptop with only 8 GB of ram. Thinking that it was the least resource usage DE. (Which i think it still is but i havent tested in a bit).

    Then i got a new pc and tried kde and to my amazment it used just a tiny bit more resources than xfce did on my old laptop. I then installed kde on that old pc and it ran perfectly well. kde had a lot more QOL compared to xfce in my opionion, with none of the jank.

    Its intersting how much different our experiences are.

    What would you recomend for a DE?














  • If you are dipping toes into containers with kvm and proxmox already, then perhaps you could jump into the deep end and look at kubernetes (k8s).

    Even though you say you don’t need production quality. It actually does a lot for you and you just need to learn a single API framework which has really great documentation.

    Personally, if I am choosing a new service to host. One of my first metrics in that decision is how well is it documented.

    You could also go the simple route and use docker to make containers. However making your own containers is optional as most services have pre built ones that you can use.

    You could even use auto scaling to run your cluster with just 1 node if you don’t need it to be highly available with a lot of 9s in uptime.

    The trickiest thing with K8s is the networking, certs and DNS but there are services you can host to take care of that for you. I use istio for networking, cert-manager for certs and external-dns for DNS.

    I would recommend trying out k8s first on a cloud provider like digital ocean or linode. Managing your own k8s control plane on bare metal has its own complications.