Todays update adds FUSE support for Mac and Linux. This replaces the old file system integration and should solve many of the problems we had in the past with the NFS drive.
You can enable FUSE support by adding "-useFuse" to the Wuala start script:
- Code: Select all
#!/usr/bin/env bash
function launchWuala() {
if [ -z "$JAVA" ]; then
JAVA=`which java`
fi
pushd "$(dirname $0)" > /dev/null
$JAVA -ea -Xmx256m -jar ./loader2.jar -useFuse -installed "$@"
popd > /dev/null
}
if [ -z "$DISPLAY" ]; then
echo "Running on console"
launchWuala "-nogui" "$@"
else
echo "Running on display $DISPLAY"
launchWuala "$@"
fi
Please note, the current implementation does not yet support symlinks and does not store extended attributes persistently (you can set them, but they are only kept in memory and therefore lost after a Wuala restart).
The corresponding bug tracker entry can be found here: http://bugs.wuala.com/view.php?id=52
Feedback is highly appreciated Please post it below.
