+9 votes
264 views
in Linux by (11.7k points)
There is an iso image (iso-file). How to mount it in Ubuntu?

1 Answer

+10 votes
by (10.4k points)

Open a terminal. Now, to mount the iso image in Ubuntu you need to perform multiple commands.

  1. The first step is to create the directory in which we mount our way:
    sudo mkdir / media / myiso
  2. Podgruzhaem required module. Just run the command:
    sudo modprobe loop
  3. And now we mount our iso image:
    sudo mount myfile.iso / media / myiso / -t iso9660 -o loop
    So, we have to mount the iso image in the directory / media / myiso. You can view its contents in the file manager.


To unmount (disable), run the following command:

sudo umount / media / myiso /
Ask a Question
Welcome to WikiTechSolutions where you can ask questions and receive answers from other members of the community.

You can ask a question without registration.

Categories

...