Does any one know how can I list this remote folders mounted on nautilus?
I tried this but it doesn't seem to work: List samba shares and current users
Does any one know how can I list this remote folders mounted on nautilus?
I tried this but it doesn't seem to work: List samba shares and current users
you can use gio (VFS API) command:
gio mount -l
this command lists all mount type (disks, partitions, etc), if you want only samba shares, then use grep to filter:
gio mount -l | grep smb
@N0rbert comment answers the question.
What I basically have to do is ls /run/user/$UID/gvfs
Thanks
gio
is a tool that comes with GNOME and I am using Unity. Couldn't manage to install it :( – feliupe Aug 09 '18 at 08:02