Mount SFTP remote file storage over gnome-terminal

There is a local file storage running on Fedora. How can I mount the storage with gnome terminal? A command

nautilus sftp://192.168.1.10/home/admin/

mounts the storage but opens Nautilus window and there is the unfinished comand in terminal until I close Nautilus window. How can I do this command in right way? I need just to mount the remote FS.

You can take a look to the gio command.

gio mount sftp://192.168.1.10

More info: man gio

2 Likes

If you need a more traditional mount you can also use fuse-sshfs, which has been around for a long time, but looks like it’s future is a bit uncertain at the moment:

1 Like

Thanks! That is just I want.