<konsole> sshfs -o allow_other username@hostname.ru:/home/usernamedir /home/somedir </konsole>
Перед применением опции allow_other, ее необходимо сначала разрешить в /etc/fuse.conf
nano /etc/fuse.conf
# Allow non-root users to specify the 'allow_other' or 'allow_root' # mount options. # user_allow_other
sudo nano /etc/fstab
sshfs#user@remote.host:/usernamedir /home/somedir fuse uid=1000,gid=1000 0 0
<konsole> fusermount -u /home/somedir </konsole>