• 1 Post
  • 27 Comments
Joined 1 year ago
cake
Cake day: June 20th, 2023

help-circle












  • chellomere@lemmy.worldtoGreentext@sh.itjust.worksAnon likes bikes
    link
    fedilink
    arrow-up
    20
    arrow-down
    4
    ·
    6 months ago

    European here. Most of what I need are within 2 miles, so for most things everyday I ride a bike. For things further away, there’s great public transportation. For when we need to transport bigger things or go where it’s hard to go by public transport, we do have a car. However, the car gets used at most once per week.

    We wouldn’t strictly need a car either. There’s several car pools around where you can book a car for a few hours when you need it.








  • chellomere@lemmy.worldtoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    arrow-up
    3
    ·
    edit-2
    8 months ago

    Did something similar recently. Turns out rsync by default, if it encounters a symlink to a directory and it’s instructed to copy a directory with the same name, will remove the symlink and create an empty directory.

    So I had a script that installs crosscompiled kernel modules via rsync /path/to/nfs/path /

    This worked perfectly until Debian 12, like other distros, decided to merge /usr, so now /bin is a symlink to /usr/bin. First time I run the script after upgrade /bin gets replaced and then no programs can be started as all binaries look for /bin/ld-linux.

    I managed to fix it by booting into busybox and recreating the symlink, but it took a while until I figured out what was wrong, wasn’t familiar with usrmerge.