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

help-circle
    1. You’ve got Black and White working? I’ve smashed my head against that one before but never got it going.
    2. The issue is that the copy protections check for a physical disk (with various methods) sometimes “Windows” ISO tools work better (CDEmu CloneDrive…) you would need to run them in the same wine prefix. But the easier way might be to find a nocd “patch” for your application ;)


  • Two additional commands I regularly use as a Sysadmin are

    systemctl status without any unit to list show the general system status (lists units that are running, units that are starting and failed units right at the top) And then systemctl list-units --failed To show me just the failed units and did deeper what the problem is.

    On a properly set up system I should quickly be able to ascertain if everything is “up and running” just by systemds status



  • MHH interesting. I honestly haven’t really given kde a fair shot since KDE4 maybe I need to force myself to use Plasma 6. Gnome has really gotten on my nerves lately. But I also know that on Plasma I will mostly recreate my gnome experience (Super key, hot corner …) since these are so ingrained in me from over a decade of using gnome.




  • somenonewho@feddit.detolinuxmemes@lemmy.worldthx, duck duck joey
    link
    fedilink
    arrow-up
    16
    arrow-down
    1
    ·
    7 months ago

    As a Linux nerd and Privacy/Open source advocate it’s tough to admit. But I can’t use DuckDuckGo. I work as a Linux Sysadmin and Google is the only search engine reliably returning good results (especially on more obscure topics). With DuckDuckGo I’ve often noticed that it will simply “drop” words from you search terms (i.e. if you search “yellow computer chair” it might just show you any kind of yellow chair or something like that) which makes it unusable for precise searches.




  • Yeah might have gotten stuck on Debian as well if I didn’t make the mistake to run stable when I first tried it. Choosing stable made sense to me since I wanted a stable os but when I was greeted by “ICE weasel” that was way behind the Firefox I got used to on Ubuntu and other software being terribly out of date I decided to move on.

    Well then I got stuck on Arch.

    But while it would be easy to say “never looked back” that’s not true of course, these days I tun Debian on most of my machines (only that they are servers) and Ubuntu on some (like my work Laptop) my personal Desktop and laptop are Arch though and probably always will be.



  • Funny I had to Google ci" to remember what it does even though I use that sometimes.

    I’ve committed to learning vim years ago and in most situations im faster in vim than in nano etc. (especially because of muscle memory) I still feel like I’m not properly using vim to it’s full extend (like whenever I remember using registers it feels like magick and I’m sure there’s more like that)




  • It’s funny because when you described your problem I also knew immediately what the issue was since I remember turning that setting on for my gaming PC back when steam play was new (been gaming on Linux exclusively since 2016).

    But for the life of me I can not remember turning on that setting on my steam deck. I must have since it works with all games but I really can’t remember switching it on.





  • No do is not the “none superuser” version of sudo.

    As the comment above stated it’s part of loops. But since loop syntax are built in to bash they are actually seperate built-in commands. Because it’s an available builtin autocompletion offers it to you.

    The do command here is just a special command that expects a certain set of parameters and a done at the end this is why you get an error trying to run do alone because it’s not adhering to the syntax properly.