How can I setup filesystem integration on Linux?
Wuala has a built-in NFS server and tries to mount a NFS share in the folder named ‘direct’. For this to succeed, portmap and nfs-common must be installed (e.g. ‘sudo apt-get install portmap nfs-common’ to install them). Furthermore, you need to create an entry in /etc/fstab that looks like this: localhost:/wuala /home/yourname/wuala/direct nfs defaults,users,noauto,rsize=8192,wsize=8192,timeo=60,acregmin=10,noac,intr,nolock,soft If there is already another NFS server running on your computer, you can avoid conflicts by starting Wuala with the option -noportmapregistration that lets Wuala skip registering its server with the portmapper. In that case, you need to add additional mount parameters in the /etc/fstab entry: nfsvers=3,mountvers=3,port=26184,mountport=26183 Unfortunately, bypassing the portmapper does not seem to work with Ubuntu.