• 0 Posts
  • 91 Comments
Joined 2 years ago
cake
Cake day: November 7th, 2023

help-circle








  • Thanks for making that comment. I recently thought the exact same thing, started a post but then deleted it, because “the internet” and all.

    But the feeling was just about the same: I wanted to start a conversation with people that care about similar things as I do. It’s good to see that it happens.

    Regarding scroll saws: I recently found a Proxxon DS230 on a thrift haul. Don’t bother with that model, it sucks. Now I’m in that weird spot where a potential new activity / “fab method” might have been ruined by a shoddy tool.








  • I don’t know what your previous setup was, but given that running resolved fixes your DNS issues, run:

    ln -sf ../run/systemd/resolve/stub-resolv.conf /etc/resolv.conf

    This will point programs that use /etc/resolved.conf during DNS resolution to the local DNS server provided by systemd-resolved.

    Then, enable resolved so that it is started when you reboot:

    systemctl enable systemd-resolved.service

    Finally, start the service so that it is available immediately:

    systemctl start systemd-resolved.service

    You will want it run those with the required permissions, e. g. via sudo.