• 4 Posts
  • 34 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle



  • Adding my “Me too” to Vorta/Borg. I use it with Borgbase, which I like because it’s legitimately cheap and they support Borg development. As well, you can set Borg backups with Borgbase to “append only,” which prevents ransomware or other unexpected “whoopsies” from wiping out your backup history.

    I backup most of my computer every hour, but have pruning rules that make sure things don’t get too out of hand. I have a second backup that backs everything up to my NAS (using Vorta, again). This is helpful for things like my downloads folder, virtual machines, or STEAM library - things I wouldn’t want to backup over the network, but on occasion I do find myself going “whoops, I wanted that.”

    I also have Vorta working on my Mom’s Macbook, then have Borgbase send me an email when there isn’t any activity for longer than a couple of days. Once I got automatic pruning working right I never had to touch this again.


  • I moved from Kubuntu to Tumbleweed and really like it. For some reason I really don’t like RPMs and that caused some hesitancy when I thought of switching, but really I never deal with RPMs directly. Zypper is ok and I’ve made peace with Flatpak. I update the whole distro every weekend and I’ve tested out reverting using Snapper.

    In the year and a half of using it I can think of two problems I had from updating - one is fixed by removing the GPUCache directory of an Electron app when Mesa gets updated, the other is with Zoom which I mostly fixed by moving to the Flatpak version.


  • The general discovery I made was this: for the small price of foregoing pretty colors and buttons and chrome, you can get a computer to do exactly what you want it to do much quicker. Assuming a willingness to learn a bit of shell scripting, of course.

    I find the emphasis people put on speed interesting, because by far the slowest part of any interaction I have with my computer is caused by me just figuring out what I’m doing next. When I’m functioning at top speed not needing to click around, or say, having the perfect keyboard shortcut, would save me only fractions of a second.

    Actually… to add to this I think the cognitive load of visually navigating is much lower than typing specific things it. I think this is why I find I’d prefer to click around my bookmarks or files to find something than just pull up a “Find” dialog and type something reasonable in.


  • I tried using KOrganize which had KMail and some other stuff integrated together and ended up feeling like it was a gigantic, archaic codebase just hanging on by a thread. It struggled a lot with Gmail and several times I deleted my whole mail profile to try to fix some strange bug.

    If I recall, what did me in was that it would stop sending emails after running for a while. The fix had something to do with restarting Akonadi. It was really disappointing, because I love a good UI/Plasma integration.

    I use Thunderbird now and … eh. It’s ok.













  • I really enjoyed reading this, thank you.

    I’d be interested in reading more about the benefits of using an atomic distro, if you were looking for ideas on things to write about. I imagine it must make system upgrades easier but what about replicating your setup elsewhere? Like if I was doing some development and now I need to throw some serious hardware at the problem, could I just backup all my Flatpaks some configs, and spin up my desktop on a cloud VM?

    I’m pretty sure that’s what Nix is all about, but the learning curve seems steep.



  • I really appreciate this, thank you. I think I had confused myself by playing with ‘u16’ and ‘u8’ and somehow coming to the conclusion that they were matching the right side of a 32-bit string. (Which may still be true, but, I’m just masking u32s now).

    This is what I ended up with, which is working the way I’d expect:

    tc filter add dev wlan0 protocol ip parent 1: prio 1 u32 \
    	match u32 0x30d6 0x0000ffff at -16 \
    	match u32 0xc92d1905 0xffffffff at -12 flowid 1:20
    

    This sends Ethernet frames destined for 30:d6:c9:2d:19:05 to flow 1:20, and it doesn’t seem to match a second device I tested. So, all good! Thank you again.