3

If I want to sync my notes with WebDAV server, I get the following error messages in Gnote and Tomboy:

This synchronization addin is not supported on your computer. Please make sure you have FUSE and wdfs correctly installed and configured

How can I set up FUSE and wdfs?

Gnote WebDAV connecting error Tomboy WebDAV connecting error

There is also a reported bug on Launchpad: Tomboy Notes cant Sync with WebDav, but I don't know if it is a bug.

BuZZ-dEE
  • 14,533

2 Answers2

2

Since fuse is a part of kernel I think its missing wdfs(webdav filesystem) which is NOT in the repository.

Install underlying libraries:

sudo apt-get install checkinstall libfuse-dev libneon27 libneon27-dev
sudo apt-get install python-fuse fuse-utils

Get & install wdfs:

wget http://noedler.de/projekte/wdfs/wdfs-1.4.2.tar.gz
tar xzvf wdfs-1.4.2.tar.gz
cd wdfs-1.4.2
./configure
sudo checkinstall
sudo dpkg -i wdfs_1.4.2-1_*.deb

If this doesn't work, then its probably this Bug:575061

Other Workaround:

  • Use SSH note sync instead.
  • Use wdfs to mount your webdav share somewhere, and use Local Directory note sync and have it point at your webdav share. This is exactly what the Tomboy add-in does, anyway.
0

I use Ubuntu 14.04 and was able to get Tomboy notes to sync with webdav on an OwnCloud server installation. I was not able get Tomboy to do a direct sync with webdav and wdfs. My work around was to use menu:syncronization/service = "Local Folder".

  1. You need OwnCloud server access.
  2. Install OwnCloud client on the computer you want Tomboy access. It is available in Software Center as "ownCloud desktop sync client" with version owncloud-client 1.5.0+dfsg-4ubuntu1. This will create a folder at /home/user/owncloud. Everything in the owncloud folder will be synced with the OwnCloud server.
  3. Close Tomboy application.
  4. Copy /home/user/.local/share/tomboy folder to /home/user/owncloud. You can keep the .local copy in case you delete your owncloud version.
  5. Start Tomboy
  6. Goto menu:syncronization/
  7. choose service = "Local Folder"
  8. choose folder path = /home/user/owncloud/tomboy
  9. choose "save" button to store your settings

This is working for me.

BuZZ-dEE
  • 14,533