Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)D
Posts
2
Comments
103
Joined
3 yr. ago

  • I have a laptop that has an AMD embedded GPU for the desktop environment, and an Nvidia GPU for playing games. I have been using Wayland since plasma 6 hit Tumbleweed maybe a week and a half ago. So far I've had zero issues, likely because I'm using my AMD graphics all the time (I haven't played games on my laptop since I switched to Wayland)

  • As a podman user myself, they're essentially the same. I look at the docker documentation when learning new things about podman. 99.9% of the time, it's exactly the same. For the features that aren't in podman, you can use the podman-docker package. This gets you a daemon so you can have some docker-specific features such as a container being able to start/stop other containers by mounting the socket as a volume, and it allows you to use docker-compose.

  • Oh, oof.

    Hopefully most people take regular snapshots.

  • Don't most distros have safeguards against this? I tried sudo rm -rf / in an Ubuntu VM that I was about to delete just to see what happened, and it gave me a warning. I had to add some other option to bypass the warning.

  • How long does a change like this take to make it's way into Plasma 6?

  • Lemmy.ml is acting as a proxy instance for Hexbear and should be defederated by any instances that defederate from Hexbear

    Jump
  • There is an admin on lemmy.ml that seems to be banning anyone who says anything negative about China. If I'm thinking of the right person, they are also a large contributor to the Lemmy codebase. That person is why I stopped donating to the Lemmy devs.

  • That package actually does a bit more than that! If you don't need all the extras, then I say just add the alias and be done with it.

  • I'm not sure what I did differently. I accidentally updated to Plasma 6 by just clicking Update All in the Discover app. I didn't even realize Plasma 6 was out yet for Tumbleweed. It worked perfectly for me.

  • Wow, that's really clever. And dead simple at the same time.

  • I like podman because rootless and daemonless are built-in and default. Yes, it can be done on docker, but you have to do a bunch of shit to get it set up.

    You could create the alias alias docker="podman" and 99% of the time, you won't even be able to tell the difference since podman is a docker drop in replacement. All the docker documentation applies to podman as well. But since docker runs as root by default, some edge cases might not work out of the box (like binding to a port on the host less than 1000).

    Podman comes with some neat tools like being able to create systemd service files to start and stop containers as services.

    To use docker-compose, you'll need some additional packages. That's probably the biggest drawback to podman imo. Podman wants to use pods instead of docker-compose, but I think they gotta take their heads out of their asses and just support the more popular format on that one. Not to mention docker-compose is just plain better imo. Easier to define, easier to understand, easier to modify. The list goes on and on.

  • It became available for me on Tumbleweed last night.

  • I just installed this accidentally by clicking update all in the Discover app. It seems like it was successful and didn't fail halfway, but I'm still confirming that. Everything seems to be working as of now.

    I had to reset a lot of settings, unfortunately.

  • I'm a podman user, but what's the point of using podman if you are going to use a daemon and run it as root? I like podman so I can specifically avoid those things.

  • Even in KDEs battery manager, I was having the same issue.

  • I do the same. My laptop had a weird bug where it would reset that value to 100 every reboot, so I made a systemd service to write it at every boot.

  • m'board tips fedora

  • When should we expect this on Tumbleweed?

  • It's really quite silly. I think all code repos on all sites should have their binaries attached to their repo. I make sure I do for every repo I maintain. Mine are usually container images, since I tend to develop services, but even if they are GUI applications, there are only a handful of binaries you would need to build and list for each release to reach 99.9% of users. Windows x86, Windows ARM, Apple x86, Apple ARM, and probably Flatpak would cover everyone on Linux (idk how to make GUI apps for Linux, I might be wrong about that). Make a script to build them all and push them all to your GitHub (or gitlab or wherever). Run the script every release. Easy peasy.