This is interesting to know that gvfs does not do this SMB Echo Request...
That is a pity, because gvfs is as simple as the "net use" command on Windows, 
and uses the Kerberos ticket, so it is a very interesting tool for companies 
trying to migrate to Ubuntu for desktops.

Currently, as a workaround, I did a small bash script that does exactly
this (with the ls command) and which I run after user login :

#!/bin/bash
cd /run/user/$UID/gvfs/
while true
do
        for i in ./smb* ; do
                if [ -d "$i" ]; then
                        ls $(basename "$i")/ &> /dev/null
                fi
        done
        sleep 120
done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1401917

Title:
  GVFS Samba mounts time out after inactivity

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1401917/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to