Software⏱️ 3 min read📅 2026-06-19

How to Fix: GNOME: I've got problems mounting a WebDAV resource. Where does GVFS's store its error log?

Troubleshooting GNOME WebDAV issues on Ubuntu 11.10.

Quick Answer: Check the /var/log/gvfs.log file for error logs.

GNOME users on Ubuntu 11.10 are experiencing issues mounting WebDAV resources, which prevents them from accessing their online storage through the Places application. This error can be frustrating, especially when other resources work without any problems.

To resolve this issue, we will go through a step-by-step guide to identify the root cause of the problem and provide two primary methods for fixing it.

🔍 Why This Happens

  • The GVFS (GNOME Virtual File System) is responsible for managing file systems in GNOME. When mounting a WebDAV resource, GVFS writes its error log to the /var/log/gvfs/ directory. This log can provide valuable information about the error and help diagnose the issue.
  • Another possible cause could be related to the gvfs-daemon process not being able to connect to the WebDAV server. This might be due to a configuration issue or a problem with the server itself.

🛠️ Step-by-Step Verified Fixes

Enable GVFS Debugging

  1. Step 1: To enable GVFS debugging, create a new file in /etc/gvfs/daemon.conf and add the following lines: `gvfs_debug=on` and `log_level=debug`. Restart the gvfs-daemon service using the command `sudo systemctl restart gvfs-daemon`.
  2. Step 2: After enabling debugging, you can check the error log by running the command `sudo journalctl -u gvfs-daemon` in the terminal. This will display the last 100 messages from the gvfs-daemon log, which may help identify the cause of the problem.
  3. Step 3: If the error persists after enabling debugging, it's possible that there's a configuration issue or a problem with the WebDAV server itself.

Check GVFS Configuration

  1. Step 1: To check the GVFS configuration, run the command `sudo gvfs-check` in the terminal. This will display information about the file systems and network connections used by GVFS.
  2. Step 2: Inspect the output of the `gvfs-check` command to ensure that there are no issues with the WebDAV resource or its connection to the server.

🎯 Final Words

If you've enabled GVFS debugging and checked the configuration, you should be able to identify the root cause of the problem. If not, it's possible that there's a more complex issue at play, such as a problem with the WebDAV server or a configuration issue specific to your system. In this case, consider seeking further assistance from a Linux expert or the Ubuntu support team.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions