Ich mounte meine sshfs shares nach Bedarf mittels Eintragungen in meiner /etc/fstab.
Das funktioniert nun allerdings seit cirka ein paar Tagen nicht mehr.
Ich kann die shares allerdings als user ohne Probleme in beliebige Ordner in meinem /home/horst/ mounten und auch mittels fusermount -u foo/bar wieder unmounten.
~% systemctl list-unit-files --type automount
UNIT FILE STATE
mnt-audio_music.automount generated
mnt-audio_speech.automount generated
mnt-comics.automount generated
mnt-movies.automount generated
proc-sys-fs-binfmt_misc.automount static
5 unit files listed.
~% pacman -Qi sshfs
Name : sshfs
Version : 3.3.0-3
...
~% pacman -Qs fuse
...
local/fuse-common 3.2.0-1
Common files for fuse2/3 packages
local/fuse2 2.9.7-4
A library that makes it possible to implement a filesystem in a userspace program.
local/fuse3 3.2.0-1
A library that makes it possible to implement a filesystem in a userspace program.
...
meine /etc/fstab
# /dev/sda1
UUID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx /boot ext3 rw,relatime,data=ordered 0 2
# /dev/mapper/vg-root
UUID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx / ext4 rw,relatime,data=ordered 0 1
# /dev/mapper/vg-var
UUID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx /var ext4 rw,relatime,data=ordered 0 2
# /dev/mapper/vg-home
UUID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx /home ext4 rw,relatime,data=ordered 0 2
# /dev/mapper/vg-swap
UUID=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx none swap defaults 0 0
######### sshfs mounts ###########
horst@server:/media/diska/Dokumente/Comics /mnt/comics/ fuse.sshfs noauto,x-systemd.automount,_netdev,user,idmap=user,transform_symlinks,identityfile=/home/horst/.ssh/my_ssh_key,reconnect,allow_other,default_permissions,uid=1000,gid=100 0 0
## Audio fuer user diska
horst@server:/media/diska/Audio/Musik /mnt/audio_music/ fuse.sshfs noauto,x-systemd.automount,_netdev,user,idmap=user,transform_symlinks,identityfile=/home/horst/.ssh/my_ssh_key,reconnect,allow_other,default_permissions,uid=1000,gid=100 0 0
horst@server:/media/diska/Audio/Hoerbuecher /mnt/audio_speech/ fuse.sshfs noauto,x-systemd.automount,_netdev,user,idmap=user,transform_symlinks,identityfile=/home/horst/.ssh/my_ssh_key,reconnect,allow_other,default_permissions,uid=1000,gid=100 0 0
horst@server:/media/diskb/Filme/ /mnt/movies/ fuse.sshfs noauto,x-systemd.automount,_netdev,user,idmap=user,transform_symlinks,identityfile=/home/horst/.ssh/my_ssh_key,reconnect,allow_other,default_permissions,uid=1000,gid=100 0 0
Die mountpunkte der sshfs shares sind mit softlinks nach /home/horst/foo/bar/baz verlinkt.
Ich habe nichts an meiner Konfiguration geändert und habe auf sämtlichen Rechnern das selbe Problem.