Ubuntu – How to install a Windows program in an ISO into Wine

isowine

I have a file named X.iso. In this file there is a Windows application named X that I want to install then use. How can I install a Windows application file named X that is embedded in an ISO file into Wine and then be able to use it?

Note :

I am using Ubuntu 12.04.
I have wine .

Best Answer

Create a directory where you will mount the disk, say inside /media/

sudo mkdir /media/x

now mount the iso using mount command like

sudo mount -o loop <PATH_ISO> /media/x

for unmount use umount

Related Question