Comments

This profile is from a federated server and may be incomplete. Browse more on the original instance.

atzanteol, to linux in Upgrade vs Reinstall

Yeah, my first thought was “this is doing containers the hard way”.

lxc and docker are your friends.

atzanteol, (edited ) to linux in What are some interesting devices powered by Linux?

They link doesn’t say the jwst uses Linux. Just that python is used by the jwst team.

atzanteol, to linux in Looking to make the switch

There are few comments more useless than “I had some random error on unknown hardware with distro X”.

atzanteol, to selfhosted in Backing-up Single Board Computer

Like I do any other system. rsnapshot nightly to backup server.

atzanteol, to linux in 13 Best Open Source ChatGPT Alternatives

How do you know if it’s open source? Well if it’s called something like “huggingface” or “redpajama” there’s a very good chance it’s made by people who have no marketing department. So good odds it’s free.

atzanteol, (edited ) to linux in Why I'm done with Nobara Linux: A Breakup Story with a Tech Twist

Let me save you from reading this.

Why I left nobara: because I did… Then scattered rambling that goes nowhere and certainly doesn’t end with a twist.

atzanteol, to linux in Could we add "Distrochooser" to the sidebar?

At first I was with this but the first set of questions is so stupid that I can’t see that being a good idea.

Somebody just code up a bot that picks a random mainstream distro everytime somebody asks “what distro should I use?”

atzanteol, to linux in Steam not launching games - no idea what to do [Solved]

You can install vulkan-tools (ubuntu package name - not sure if it’s the same for your distro) and running vkcube. It’s a simple vulkan app that will display a rotating cube using vulkan. It will also spit out the GPU that it’s running on.

If it reports your nvidia card and the cube looks good then your drivers may be fine and the issue is with Steam and/or this application specifically. If not then there’s an issue with your drivers.

Occasionally when I’ve had a kernel update or something the nvidia drivers have gotten borked. Removing, re-installing, and rebooting has helped. Something like this:


<span style="color:#323232;">apt purge nvidia-driver-*
</span><span style="color:#323232;">apt install nvidia-driver-535
</span><span style="color:#323232;">reboot
</span>
atzanteol, to selfhosted in Kubernetes? docker-compose? How should I organize my container services in 2024?

FWIW I manage docker compose files with ansible. Allows me to centrally manage them without the need to go logging into multiple vms. I also create a systemd service file to start/stop the containers (also managed with ansible).

That said I’m starting to switch over to k8s as well (also with microk8s which has been the easiest to work with). Definitely overkill but I want to learn it.

atzanteol, to linux in I'm so frustrated rn.

Then stay away. If you don’t like to tinker with things it’s not for you.

atzanteol, (edited ) to linux in What's your current favorite distro that isn't Arch, Debian or Fedora?

Same! I’m on Ubuntu and Pop these days but I fondly remember my old distcc build cluster…

Portage is still far and away my favorite package manager.

atzanteol, (edited ) to linux in Easy way to try out a bunch of different DEs?

Not sure about others but in PopOS (and I assume Ubuntu) it’s pretty simple. Probably easy with most distros.


<span style="color:#323232;">apt install gnome-desktop
</span><span style="color:#323232;">apt install kde-standard
</span><span style="color:#323232;">apt install xubuntu-desktop
</span><span style="color:#323232;">apt install cinnamon-desktop-environment
</span><span style="color:#323232;">apt install xfce4 xfce4-goodies
</span><span style="color:#323232;">etc.
</span>
atzanteol, to selfhosted in Planning on setting up Proxmox and moving most services there. Some questions

This seems to be a “widely believed fact” but I haven’t seen any real data to back it up.

atzanteol, to linux in Why is Gnome fractional scaling 1.7518248558044434 instead of 1.75?

It’s not a “language” issue it’s a “computer” issue. This math is being done on the CPU.

IEEE 754

Some languages do provide for “arbitrary precision math” (Java’s BigDecimal for example) but it’s slower to do that. Not what you want if you’re multiplying a 4k matrix every millisecond.

atzanteol, to selfhosted in Joplin alternative needed

I think you need to learn more about how databases work. They don’t typically reclaim deleted space automatically for performance reasons. Databases like to write to a single large file they can then index into. Re-writing those files is expensive so left to the DBA (you) to determine when it should be done.

And how are you backing up the database? Just backing up /var/lib/postgres? Or are you doing a pg_dump? If the former then it’s possible your backups won’t be coherent if you haven’t stopped your database and it will contain that full history of deleted stuff. pg_dump would give you just the current data in a way that will apply properly to a new database should you need to restore

You can also consider your backup retention policy. How many backups do you need for how long?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #