13

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 .

jacinta
  • 55

6 Answers6

22

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

Web-E
  • 21,716
6

Install acetoneiso by sudo apt-get install acetoneiso command.

The open it by typing acetoneiso in the dash, and click on the icon.

enter image description here

The click on the "Mount" button. And select the iso file to mount.

enter image description here

The open Nautilus (File browser) to see the iso mounted on a folder named 1.

enter image description here

Then you should be able to install program from the iso file.

See this community documentation about installing software using wine

Anwar
  • 77,855
2

You can just double-click the ISO in the file-manager to open it. You can also right-click on it, and choose Archive Mounter, which should be the default, to open it with.

dobey
  • 41,650
1

You can mount that iso, and then just use the files the way you want. For example:

sudo mount X.iso /media/isoimage/ -o loop

where directory isoimage exists in /media

To unmount:

sudo umount /media/isoimage

Nautilus should be able to mount isos

Anwar
  • 77,855
LnxSlck
  • 12,456
1

Try open nautilus, right-click the file and select "Disk Image Mounter". It got mounted for me. Although I couldn't mount it using other CMD ways.

0

Mount the ISO with:

sudo mount -o loop ~/Path to/X.iso /mnt

You may then browse to /mnt and execute your exe using Wine.

SirCharlo
  • 40,096