I have Ubuntu Server 10.10 running on Parallels 6 (latest update from yesterday) on my iMac. I click on the Install Parallels Tools in the Parallels Desktop Menu, but do not see where what I think should be the file prl-tools-lin.iso is placed.
Don't understand whether the warning that I may have to do mount -o exec
applies to me or not. Think I might be able to mount and run the .iso file, if I can locate it. Any ideas?
I have solved this issue with Ubuntu Server 18.04 as follows:
1) Click "Update Parallels tools" (upper right corner of the parallels virtual machine window)
2) Log in and then give the commands:
If, when mounting the CD-ROM, you get the error:
mount: /media/cdrom: unknown filesystem type 'iso9660'
you can fix this using:
With Parallels 10.1.1 and Ubuntu 14.04 using the menu entry
Actions -> Install parallels tools...
did not mount the installer in /media/parallels. Tryingsudo updatedb; locate prl-tools-lin.iso
also returned an empty result.The solution is to
cd /usr/lib/parallels-tools
thensudo ./install
, which will execute the text installer. Incidentallysudo ./install-gui
(from the same directory) will execute the GUI installer (requires X server).To find a file on your compute you can use the built in index, from a command line:
sudo updatedb; locate prl-tools-lin.iso
But really to answer this question we need to go to the guides:
If this fails to work then you can get the iso file and mount it manually like so:
sudo mount -o loop /path/to/prl-tools-lin.iso /mnt
Don't forget to unmount it when you're finished:
sudo umount /mnt
If you're using Parallels 6+ instead of typing: "sudo sh parallels-tools.run" you will probably need to type "sudo sh install" without the quotation marks.