[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2014-03-31 Thread Ritesh Khadgaray
Please check, if this issue is still seen.

Thanks

** Changed in: gvfs (Ubuntu)
   Status: Triaged => Incomplete

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2013-05-16 Thread Bug Watch Updater
** Changed in: gvfs
   Status: New => Expired

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2012-01-09 Thread gwir
@John : I supposed it's a bash script?

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2011-12-20 Thread John Doe
@ossjunkie: Didn't look at it before my previous comment as I hadn't
noticed it was there. It looks OK apart from the predictable location.
As you say, not a big adjustment to change that though.

# only apply when home directory is on NFS
if [ "$(stat -f -L -c %T $HOME)" = "nfs" ]; then
  # remove existing ~/.gvfs dir if empty
  rmdir ~/.gvfs
  if [ ! $? -eq 0 ]; then
# remove link or move unempty dir/file
if [ -h .gvfs ]; then
  rm ~/.gvfs
else
  mv ~/.gvfs ~/.gvfs_moved_for_gvfs-fuse_on_nfs
fi
  fi
  # create the symlink to unpredictably named directory with secure permissions
  ln -s "$(mktemp -d)" ~/.gvfs
fi

As well as creating an unpredictable location using  mktemp also means
you don't need to worry about permissions since by default it creates
files/directories with read/write for owner only.

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2011-12-20 Thread ossjunkie
@John: Did you take a look at the patch i have proposed, it wouldn't
need a big adjustment for your needs.

Anyhow great that there is some interest in this topic. Would be great
if we could bring a patch to the package in time for the precise
release.

What the patch is lacking beside John's suggestion is a routine for the
case where NFS isn't present anymore, so i works back and forth.

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2011-12-20 Thread John Doe
Timo's workaround is just what I was looking for. I wouldn't use
/tmp/.gvfs-$USER though since that's a predictable location. On a
machine where lots of people log in to it someone could maliciously pre-
create such directories for other users resulting in at best denial of
service and at worst them being able to access other people's files. I'd
use mktemp

rmdir ~/.gvfs 2>/dev/null || rm ~/.gvfs
ln -s "$(mktemp -d)" ~/.gvfs

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2011-06-21 Thread Brian Murray
** Tags added: patch

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2011-06-21 Thread ossjunkie
I just came across this bug when debugging OOo on SMB shares. Therefore
i enhanced the proposed workaround by Timo so that the quirk only gets
executed if $HOME is really on a NFS share. Tested it successfully on an
old karmic machine and the current lucid workstations. Just see the
attachment. Comments highly welcome.

Of course a proper solution would be a NFS mode in GVFS, but as this
requires probably requires a lot of changes to GVFS this is no real
solution for a backport. Therefore would we could include this script in
the gvfs packages as SRU, as it only gets active on NFS setups.



** Attachment added: "51gvfs-fuse-on-nfs"
   
https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/435719/+attachment/2176974/+files/51gvfs-fuse-on-nfs

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

Title:
  gvfs-fuse fails to start on NFS mounted homes

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

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2010-09-15 Thread Bug Watch Updater
** Changed in: gvfs
   Importance: Unknown => Medium

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2010-09-08 Thread Timo Aaltonen
a simpler/cleaner (?) way would be to add a script in
/etc/X11/Xsession.d/, those are run as the user so no sudo'ing is
necessary (and I used /tmp, for keeping the namespace cleaner). This is
what we have now:

# create users gvfs mountpoint in /tmp
[ ! -d /tmp/.gvfs-$USER ] && mkdir -m 0700 /tmp/.gvfs-$USER
# remove ~/.gvfs and create the symlink
rmdir ~/.gvfs 2>/dev/null || rm ~/.gvfs
ln -s /tmp/.gvfs-$USER ~/.gvfs

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2010-09-08 Thread Andreas Heinlein
Not exactly helpful for the bug report, but a hint at Erik: I have found quite 
a few traps in Ubuntu Software where it is assumed that the root user has 
access to the user's home directory, which is not the case in such an 
environment. Examples include usb-creator (fixed by now), pam_mount and others. 
This is a side effect of the Ubuntu way of allowing "normal" users to do 
administrative tasks via sudo.
Applications using PolicyKit apparently do not suffer from this, obviously 
usb-creator is a good example for this.

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2010-07-05 Thread Bug Watch Updater
** Changed in: gvfs
   Status: Unknown => New

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2010-07-01 Thread Erik Meitner
Modify the second to last line of the above code to be:
sudo -u $USER rmdir ~/.gvfs || sudo -u $USER rm ~/.gvfs

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2010-07-01 Thread Erik Meitner
I also have found this behavior to be a problem for our soon to be 60
workstation 200 user LDAP/NFS environment. We are running Ubuntu
10.04/amd64, autofs mounted NFS with rootsquashing on.

My workaround is: In /etc/gdm/PreSession/Default add the following
before  the "/sbin/initctl ..." line:

# create /gvfs if missing
[ ! -d /gvfs ] && mkdir -m 1777 /gvfs 
# create users gvfs mountpoint there
[ ! -d /gvfs/$USER ] && sudo -u $USER mkdir -m 0700 /gvfs/$USER
# remove ~/.gvfs and create the symlink
sudo -u $USER rmdir ~/.gvfs 
sudo -u $USER ln -s /gvfs/$USER ~/.gvfs

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2009-09-24 Thread Sebastien Bacher
Thank you for sending the bug to GNOME

** Changed in: gvfs (Ubuntu)
   Status: New => Triaged

** Also affects: gvfs via
   http://bugzilla.gnome.org/show_bug.cgi?id=596176
   Importance: Unknown
   Status: Unknown

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2009-09-24 Thread Andreas Heinlein
I followed your link and posted the bug upstream here:
https://bugzilla.gnome.org/show_bug.cgi?id=596176

** Bug watch added: GNOME Bug Tracker #596176
   http://bugzilla.gnome.org/show_bug.cgi?id=596176

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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


[Bug 435719] Re: gvfs-fuse fails to start on NFS mounted homes

2009-09-24 Thread Sebastien Bacher
Thank you for your bug report. The issue is an upstream one and it would
be nice if somebody having it could send the bug the to the people
writting the software (https://wiki.ubuntu.com/Bugs/Upstream/GNOME)

** Changed in: gvfs (Ubuntu)
   Importance: Undecided => Low

** Changed in: gvfs (Ubuntu)
 Assignee: (unassigned) => Ubuntu Desktop Bugs (desktop-bugs)

-- 
gvfs-fuse fails to start on NFS mounted homes
https://bugs.launchpad.net/bugs/435719
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

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