Gene Heskett wrote: > Greetings all; > > Bringing up a new machine on my local network and I've forgotten how, in > buster, to start sshfs at bootup? >
/etc/fstab: user@host:/remote/folder /mount/point fuse.sshfs noauto,x-systemd.automount,_netdev,users,idmap=user,IdentityFile=/home/user/.ssh/id_rsa,allow_other,reconnect 0 0 You don't need all of those options -- in particular, you don't want noauto and you do want an IdentityFile option. -dsr-