I use gPilotd to sync. I've not had any problems - everything works fine. Memos on the Palm are synced to text files in a directory, everything else syncs with Evolution.
To install files onto the Palm, I set up a script in Nautilus' scripts directory (~/.gnome2/nautilus-scripts) - this allows me to right-click on a file and select "Install onto Palm" to install it. The script is as follows:
Quote:
for uri in $NAUTILUS_SCRIPT_SELECTED_URIS; do
gpilot-install-file -l $uri &
done
|
If you omit the -l then it will install immediately - the -l instructs it to install the file the next time a sync is performed.