[-] Telorand@reddthat.com 6 points 1 day ago

I haven't played this one, but I did the one from KanoOS several years ago, and it was really helpful for learning some of the common CLI tools, like cat, cd, and grep.

More of these kinds of games is a good thing, IMO!

[-] Telorand@reddthat.com 47 points 1 day ago* (last edited 1 day ago)

No, you don't need to be worried. For example, Flatseal is a program to manage other flatpaks. This means that, by design, it needs to be able to grant flatpaks certain permissions that may expose them to system services they need to operate correctly.

One user mentioned that these new warnings aren't particularly helpful, because they don't give a good explanation of what or why, and they just foster anxiety in users who just want to install an otherwise reputable flatpak.

I don't know anything about xournal++, but I would imagine it's also reputably safe, and somebody else can verify for sure.

[-] Telorand@reddthat.com 7 points 1 day ago

Sounds like a shitty day.

[-] Telorand@reddthat.com 1 points 1 day ago

If it's for someone else, I'd pick Mate or XFCE. Should feel familiar to Windows (which is what I'd guess they're coming from), and it should be light enough to work on that hardware.

ElementaryOS comes with Pantheon, which is also very light, iirc, and it might be worth trying out via a live ISO.

[-] Telorand@reddthat.com 20 points 2 days ago

The irony is climate change doesn't care if they exist or not, either.

[-] Telorand@reddthat.com 5 points 2 days ago

That's really interesting. I hadn't heard that before

[-] Telorand@reddthat.com 18 points 2 days ago

I'm not convinced there will be as many humans left by 2100. The ultra-capitalists certainly don't seem to be slowing down their consumption at all; fewer humans means fewer sources of emissions, so maybe the climate will right itself by pure attrition, on its part, and pure apathy/ignorance/greed on ours.

[-] Telorand@reddthat.com 9 points 2 days ago

So excited for this. I'm going to start a new game when it drops.

[-] Telorand@reddthat.com 11 points 2 days ago

If it is, it's only working on the most braindead, disengaged, "enlightened" centrists who wouldn't know propaganda if it had a stamp on it that said, "This is propaganda."

The rest of the climate denialists/accelerationists are his base, who drank the Kool aid long ago.

[-] Telorand@reddthat.com 4 points 2 days ago

KH2 is where I would say the gameplay really takes off.

And where I've heard from other fans that the story takes a dive off a cliff. So you get better gameplay and a mess of a story.

I do not have personal experience to verify, but multiple friends confirmed this to be the case.

[-] Telorand@reddthat.com 19 points 2 days ago

It's a distro that makes all but a few system directories immutable. This means you can't just install whatever you want in the same way you would install in a traditional Linux system.

This comes with some benefits:

  • Malicious and buggy software can't permanently fuck up your installation. Even root can't edit those directories.
  • Each system update replaces only the system layer, but you can rollback to the previous one if something breaks.
  • You can rebase to other images (like going from Fedora Kinoite to UBlue Aurora) with a simple command, and you don't need to reinstall anything or worry about backing up your /home directory.
  • Most software is installed via flatpaks or appimages, keeping a layer of separation between your system and your applications.
  • Distroboxes/Podman containers can handle a lot of additional software while keeping it safely containerized.
  • The system is generally reproducible, so the core of what you have is the core of what everybody else has.

Some drawbacks:

  • You can't install whatever you want however you want. There are some hard limitations on where files are allowed to go, and installing certain software that interacts with the kernel can be tricky (I'm currently trying to figure out the best way to install my VPN provider's client).
  • There's a definite learning curve to working with containers. It's not always as simple as "create container, install thing."
  • There's a definite learning curve to retraining yourself to think in layers/containers.

Some examples of modern immutable distros are:

  • Fedora Silverblue
  • Fedora Kinoite
  • Universal Blue Aurora
  • Universal Blue Bluefin
  • Universal Blue Bazzite
  • NixOS
  • BlendOS
[-] Telorand@reddthat.com 22 points 3 days ago

People are so stupid. Authoritarians can't save you from impending doom, and they have no incentive to do so.

5
submitted 4 days ago* (last edited 3 days ago) by Telorand@reddthat.com to c/linuxquestions@lemmy.zip

cross-posted from: https://reddthat.com/post/21668140

I have a VPN daemon that needs to run before the client will work. Normally, this would have been set up automatically by its install script, but the system is immutable.

I've created the systemd service via sysyemctl edit --force --full daemon.service with the following parameters:

[Unit] 
Description=Blah
After=network-online.target

[Service]
User=root
Group=root
ExecStart=/usr/bin/env /path/to/daemon

[Install]
WantedBy=multi-user.target

I've verified that the daemon is actually executable, and it runs fine when I manually call it via sudo daemon. When I try to run it with sudo systemctl enable --now daemon.service, it exits with error code 126.

What am I missing?

Edit: Typo, and added the relevant user and group to the Service section. Still throwing a 126.

Solution: the system wanted /usr/bin/env in ExecStart to launch the binary. The .service file above has been edited to show the working solution.

16
submitted 4 days ago* (last edited 3 days ago) by Telorand@reddthat.com to c/linux4noobs@lemmy.world

I have a VPN daemon that needs to run before the client will work. Normally, this would have been set up automatically by its install script, but the system is immutable.

I've created the systemd service via sysyemctl edit --force --full daemon.service with the following parameters:

[Unit] 
Description=Blah
After=network-online.target

[Service]
User=root
Group=root
ExecStart=/usr/bin/env /path/to/daemon

[Install]
WantedBy=multi-user.target

I've verified that the daemon is actually executable, and it runs fine when I manually call it via sudo daemon. When I try to run it with sudo systemctl enable --now daemon.service, it exits with error code 126.

What am I missing?

Edit: typo

Edit 2: Added script modifications. Daemon appears to be some kind of pre-compiled binary.

Solution: ExecStart wanted /usr/bin/env to launch the binary. The service file above has been edited to reflect the correct solution. See this post for further discussion.

71
submitted 1 week ago by Telorand@reddthat.com to c/linux@lemmy.ml

I'm working on my transition plan away from Windows and testing out various things in VMs as I do so, and one big hurdle is making sure the VPN client my work requires can connect. Bazzite is my target distro (primarily gaming, work less frequently), though other more traditionally structured ones like Pop!_OS and Garuda are possibilities.

I'm currently trying and failing to get the VPN client working in a distrobox (throws an error during connection saying PPP isn't installed or supported by the kernel). However, I can successfully get the VPN connected if I overlay the client and its dependencies via rpm-ostree install, but I read somewhere that Bazzite's philosophy is to use rpm-ostree as sparingly as possible for installing software to preserve as much containerization as possible.

Since I can get it working outside of a container, am I overthinking it? Should I just accept that this might be one of the "sparing" cases? Is Bazzite perhaps a poor fit for my use case? I've been trying to make sense of this guide, but I'm having trouble understanding how to apply it to my situation, since I'm not that familiar with Docker or Podman.

60

For example, I saw a post the other day detailing how to set up a Brother laser printer on Kinoite. That's not something I would have initially considered a potential problem to be solved. Another I ran into some years ago had to do with an Edimax WiFi dongle that used some weirdly specific Realtek 8812 radio, for which you had to set up the driver via dkms. A little prep and knowledge in advance would have saved days of searching online.

I've started a personal to-do list of things to research and make sure I have all my ducks in a row before I make the full-time switch on my main desktop, so besides the usual "back up your files" advice, I'm hoping y'all can point out some QoL things I and others may often miss!

64
Why openSUSE? (reddthat.com)
submitted 3 weeks ago* (last edited 3 weeks ago) by Telorand@reddthat.com to c/linux@programming.dev

First, let me be clear up front that I'm not promoting the idea that there should be one "universal" Linux distro. With all the various distros out there for consumers, there's lots of discussion about Arch, Debian, and Fedora (and their various descendant projects), but I rarely see much talk about openSUSE.

Why might somebody choose that one over the others? What features or vision distinguishes it from the others?

Edit: I love all the answers! Great stuff. Thanks to everyone!

42

Now that late spring/early summer is upon us, there's increasingly more headlines about less rain in various places (recent floods notwithstanding). I'm assuming that's because water is evaporating and not returning to those places, but where is it going?

Is it arriving, now, in these bursty flash floods? Is it staying longer in the atmosphere and moving to new locations? Is more of it just staying in the atmosphere period?

21
164

Communicating trauma through art is fine, as long as you don't remind the Christian fundies that their beliefs and practices are a prime source of religious trauma for lots of people.

14
submitted 2 months ago by Telorand@reddthat.com to c/freegames@feddit.uk
55
submitted 4 months ago by Telorand@reddthat.com to c/steamdeck@sopuli.xyz

What are some good games you play that you think are good for extended travel (i.e. battery friendly)? Emulation and TDP-adjusted options count!

31
submitted 4 months ago* (last edited 4 months ago) by Telorand@reddthat.com to c/community@reddthat.com

Far too often, lately, I see lots of people worried about the number of downvotes, or making preliminary justifications and requests to not downvote particular posts.

Me? I don't have to think about any of that. The content of the posts and comments determines their quality, not some artificial number that only represents whether people dis/like something.

Edit: Wow, a lot of people from other instances seem really offended that I don't like downvoting and seem a bit confused that I'd be thanking my admins for something I appreciate.

If you like downvoting, you don't have to move here. Enjoy your instance's features. Welcome to the Fediverse.

165
submitted 4 months ago by Telorand@reddthat.com to c/steamdeck@sopuli.xyz

cross-posted from: https://lemmy.ml/post/12541544

view more: next ›

Telorand

joined 1 year ago