https://bugs.kde.org/show_bug.cgi?id=443155

--- Comment #63 from samuelsm...@hotmail.com ---
Update, because it just got worse, but there is a solution

Before I was just having issues with openssh needing to be downgraded for
kdeconnect to work in artix linux.

Today a big update hit my system and updated kdeconnect and the kernel and that
broke kdeconnect for good, even with openssh downgraded.

I had to downgrade kdeconnect to version 24.05.1-1 and make the following
wrapper script for sshfs (yes this is needed now lol):

```
#!/usr/bin/env bash

SSHFS_BIN="/usr/bin/sshfs"

if [[ "$1" =~ ^kdeconnect ]]; then
    "$SSHFS_BIN" "$@" -o PubkeyAcceptedKeyTypes=+ssh-rsa
else
    "$SSHFS_BIN" "$@"
fi
```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to