One possibility to synchronize the contacts is to use a google mail account. This works because GMail is able to import contacts exported by outlook as comma separated file. When using the Nexus Phone one typically uses a GMail account anyway, so this is a natural way to do it.
Follow these steps:
Thats it, more or less. As the Google Nexus will synchronize all mails and contacts with your google account automatically (of course it has to be set up accordingly) the contacts will appear at the phone after a short time. Additionally it shall be mentioned that Google has a great tool to find duplicate contact-entries or to merge contacts.
One possibility could be to use Wine (Windows emulator) to run the windows program present on the CD. But: Wine often has problems with graphic intense software and the chances, that this would work are rather low.
Surfing the Web showed, that there might be only one decent application to allow the same functionality than the win app.
Mango (http://ric.uthscsa.edu/mango/mango.html) is capable of displaying DICOM picture series and additionally to do additional fancy things needed by a medical doctor e.g. creating 3D models (see homepage for full functionality).
As this is a java program and does not install into the system, e.g. is not accessible via the app-menu some additional steps have to be performed.
To enable all users to access the program it has to be installed into some global folder (e.g. /opt/Mango). All other steps are same asa above. Note, that only superuser can install into /opt.
Another possible program would be Open DICOM Viewer (http://sourceforge.net/projects/opendicomviewer/) but this program only has limited functionality and cannot compare to the feature richness of Mango. As Open DICOM Viewer is a Java program as well the installation instructions above also apply to it.
don't restart or stop the VM not at all, by doing this, you will lose your image files and this will lead to a disaster.
Linux mark the files as deleted, but they are still exist, I will show you how to restore the files.
1- Look for the pid of the running virtual machine you just deleted (for example a virtual windows server)
lsof | grep -i qcow | grep deleted
kvm 31127 root 9u REG 9,2 32212254720 2985316 /home/root/kvm/windows_2003/win2k3.qcow2 (deleted)
2-With the pid (31127) you can find the filediscriptor in /proc.
ls -al /proc/31127/fd | grep deleted
lrwx------ 1 root root 64 Nov 6 14:51 9 -> /home/root/kvm/windows_2003/win2k3.qcow2 (deleted)
3-Now suspend your virtual machine in order to prevent data loss
virsh suspend winserver
4-Restore the files to its original path and name.
cat /proc/31127/fd/9 > /home/root/kvm/windows_2003/win2k3.qcow2
5-Now you have to hard-reset your virtual machine.
virsh destroy winserver && virsh start winserver
One solution was to download a linux distribution, install it besides Win7 and then use the commands as recommended in the shell of this linux distribution.
That solution worked like a charm, the only "drawback" of that solution were the 6gb additional storage needed for installing the linux distribution.