• 0 Posts
  • 87 Comments
Joined 5 months ago
cake
Cake day: February 5th, 2025

help-circle

  • Ahh yes, as evidenced by absolutely nothing whatsoever, I mean Jesus Christ, the GNU ideologue is completely antithetical in every possible way to your statement…

    GNU’s goal is to give computer users freedom and control in their use of their computers and computing devices by collaboratively developing and publishing software that gives everyone the rights to freely run the software, copy and distribute it, study it, and modify it.

    You have less than zero idea what you’re speaking about…





  • VPN… This is a specific problem that VPNs were created to solve.

    On your Wireguard network (or whichever), note your vLAN IPs, and configure rclone/rsync with them like normal. Ensure you’re connected to Wireguard and then run your command;

    ❯ fd --change-older-than 30days -X rclone sync phone:my/path/here pc:destination/path/here
    

    Using a VPN ensures that regardless of WiFi/Cellular connections you’ll still be able to transfer at home, or remotely. Using methods like hostnames only work locally.






  • Xanza@lemm.eetoLinux@lemmy.mlSSH managers on Linux?
    link
    fedilink
    English
    arrow-up
    10
    arrow-down
    1
    ·
    2 months ago

    This is the way. Even if you have a lot, it’s not hard to pull up a list of options;

    ❯ cat ~/.ssh/config | grep 'Host ' | awk '{print $2}'
    

    Or you can make it interactive;

    ❯ ssh $(cat ~/.ssh/config | grep 'Host ' | awk '{print $2}' | fzf)
    

    ez pz








  • A delayed update schedule really helps for environments like this. Keep your ear to the ground for critical updates, but I’ve done this sort of thing a few times and waiting a week or two to update is a really great solution.

    One thing I’ve almost done before is to choose a computer as a test subject, update it before anything else, and if all things are good you’re probably fine.