This is a replica of the article by jultech from 2007 for posterity and data-replication purposes.
When dualbooting between windows (first OS installed) and linux, do this:
~ # mv /opt/lampp/var/mysql /opt/lampp/var/mysql.BACKUP ~ # ln -s /mnt/windisk/path/to/XAMPP/mysql/data/ /opt/lampp/var/mysql ~ # mv /opt/lampp/htdocs /opt/lampp/htdocs.BACKUP ~ # ln -s /mnt/windisk/path/to/XAMPP/htdocs /opt/lampp/htdocs
This creates a backup of the original XAMPP folders in linux, and them symlinks them to the windows disk mounts.
Restart XAMPP to have th configuration running.
Thank you jultech.