Linux mount iso loop

What is a «loop device» when mounting?

In man you can search for a string by typing /mystring after man starts. You can highlight all matches with just / . See man man . I see @Josh has added such a comment to the accepted answer.

/ is the standard search feature in vi, vim and almost all commands that output in pages (less, more. )

3 Answers 3

A loop device is a pseudo («fake») device (actually just a file) that acts as a block-based device. You want to mount a file disk1.iso that will act as an entire filesystem, so you use loop.

The -o is short for —options .

And the last thing, if you want to search for «-o» you need to escape the ‘-‘.

With GNU grep, grep -e -o ( -e says «next thing is the pattern no matter what it looks like) or grep — -o ( — means stop looking for switches) work too. Of course feel free to use whatever works for you.

You can also just type: man mount , and then you can use /-o to search for and highlight all instances of «-o»

Traditionally, UNIX systems have had various types of nodes in their filesystems:

  • directory
  • file
  • symlink
  • block device
  • character device
  • FIFO
  • UNIX domain socket

While there are now exceptions, generally block devices containing filesystems are mounted on directories.

Since you want to mount a file, you must first create a loop block device that is backed by the file. This can be done using losetup , but mount -o loop is a shortcut that handles that behind the scenes.

Источник

Как смонтировать ISO-файл в Linux

Файл ISO — это архивный файл, который обычно содержит полный образ компакт-диска или DVD. Например, большинство операционных систем, таких как Windows, Linux и macOS, распространяются в виде образов ISO.

Читайте также:  Amd ryzen linux driver

Файлы ISO можно извлечь с помощью популярных архивных программ, смонтировать на устройстве с петлей и записать на USB-накопитель или пустой компакт-диск.

В этом руководстве мы объясним, как монтировать файлы ISO в Linux.

Как смонтировать файлы ISO с помощью командной строки

Команда mount позволяет прикреплять (монтировать) файлы ISO в определенной точке монтирования в дереве каталогов.

Инструкции в этом разделе должны работать с любым дистрибутивом Linux, включая Ubuntu, Debian и CentOS.

    Начните с создания точки монтирования, это может быть любое место, которое вы хотите:

sudo mount /path/to/image.iso /media/iso -o loop

Монтирование файлов ISO с помощью Gnome

Если вы используете дистрибутив Linux, который использует Gnome в качестве среды рабочего стола, вы можете смонтировать файл ISO с помощью приложения для монтирования образа диска Gnome.

Найдите ISO-файл, который вы хотите смонтировать, и щелкните его правой кнопкой мыши. В контекстном меню выберите «Открыть с помощью Disk Image Mounter».

После подключения образа на рабочем столе должен появиться значок устройства. Дважды щелкните по нему, и откроется файловый менеджер Gnome.

Чтобы отключить файл ISO, щелкните правой кнопкой мыши значок устройства и выберите «Размонтировать».

Выводы

В Linux вы можете монтировать файлы ISO с помощью команды mount . Пользователи настольных компьютеров могут использовать графические инструменты, такие как Gnome Disk Image Mounter.

Если у вас есть какие-либо вопросы или отзывы, не стесняйтесь оставлять комментарии.

Источник

How to Mount and Unmount an ISO Image in Linux

In computing, you might stumble upon an ISO image file. Have you ever wondered what the story is behind these files? How can you mount and unmount an ISO image in Linux?

What is an ISO file?

An ISO image, or “.iso” (International Organization for Standardization), is popularly known as an archive file that uses the ISO 9660 file system to distribute operating system or game files on CD/DVD media.

It compresses the file that can be easily written to an optical disc, disc-sector by disc-sector. Most of the popular Linux operating systems like Debian, Ubuntu, Fedora, Kali Linux, etc. are distributed in the ISO file format.

There might be a situation where you need to view the content inside this ISO file. That can be done on any operating system using the application except Linux, which can easily mount and unmount ISO image files without any applications.

Читайте также:  Копировать файлы linux windows

In this beginner’s guide, you will learn how to mount and unmount ISO image files on the Linux system temporarily and permanently without any applications.

How to Temporarily Mount an ISO Image in Linux?

Open your terminal app using the Ctrl+Alt+t keyboard shortcut, and then navigate to the ISO image file directory.

$ cd Downloads/ $ ls

Below is the output of the above command.

Navigating to the ISO file directory

It’s time to create a mount point directory where all the files will be mounted. In general, you should create a mounting point directory on the /mnt/ path that stores the mounted files.

We will follow the same principle by creating the isofile directory within the /mnt/ path using the following command.

$ sudo mkdir -p /mnt/isofile $ ls /mnt/

Below is the output of the above command.

Creating a mounting directory in the mnt directory

Once you have created the mount point directory, use the mount command with the ISO image file path along with the -o loop option (necessary to access archived files as a block device), as shown below.

$ sudo mount -o loop ubuntu-22.04-desktop-amd64.iso /mnt/isofile/

Below is the output of the above command.

Mounting ISO files on the mount point

Above, mounted files are read-only. You cannot modify or change anything in the mounting location. However, to list the content of the ISO image file, navigate to a mount path and use the ls command, as shown below.

$ cd /mnt/isofile/ $ ls -la

Below is the output of the above command.

Viewing the content of the mounted file

If the file is not visible or something went wrong, then you can verify the ISO image file is mounted to the target destination by using the following command.

Below is the output of the above command.

Verifying the file is mounted

If you did not find the mount point, then check your ISO image file and repeat the above-mentioned steps.

How to Unmount an ISO Image in Linux?

Simply use the umount command by specifying the location of the mounting point to unmount.

$ sudo umount /mnt/isofile

Below is the output of the above command.

Unmounting an ISO Image file

How to Permanently Mount an ISO Image in Linux using fstab?

The above steps can only mount the ISO image file temporarily in your Linux system. Sometimes, you want to permanently mount an ISO image file in Linux without repeating the same command on each boot.

Читайте также:  600m wireless usb adapter driver linux

To permanently mount an ISO image in Linux, open the /etc/fstab file using your choice of text editor.

$ sudo nano /etc/fstab

The above command will open the /etc/fstab file, as shown below.

Opening the fstab file

Then add the full path of your “.iso” file with the mount path at the end of the file, as shown below.

/home/trendoceans/Downloads/ubuntu-22.04-desktop-amd64.iso /mnt/isofile/ iso9660 loop 0 0

Below is the output of the above command.

Mounting ISO file permanently from the fstab file

Save and close the file, then execute the below command to verify the fstab file is configured without an error.

$ sudo mount -a

Below is the output of the above command.

Verifying the fstab configuration file

If the output is error-free, then it means all the configuration is properly done and next time you reboot your system, it will automount the ISO file in the target mounting directory.

If you want to remove the auto-mounting of the ISO image file on boot, then repeat the above steps and remove the last line added in the fstab configuration file.

Bonus Tip! How to List ISO Image File Content

You can use the isoinfo command with the -l (Generate output similar to ‘ ls -lR ‘) and -i (Filename to read ISO-9660 image) options to list the ISO image file content without mounting the ISO image file by using the following command.

$ isoinfo -l -i ubuntu-22.04-desktop-amd64.iso | less

Below is the output of the above command.

View the content of the ISO image file

To get a clean output by just printing the image file content name without displaying the additional information, use the isoinfo -p -i imagefile.iso | less command.

Wrap Up

The above steps are the easiest way to mount ISO image files temporarily or permanently on a Linux system. However, distribution file managers like Nautilus for GNOME provide an integrated option for mounting an ISO image file.

But they don’t have an option to automount an ISO image file on boot. That’s all for now. If you have any queries or questions, then feel free to comment.

Innovative tech mind with 12 years of experience working as a computer programmer, web developer, and security researcher. Capable of working with a variety of technology and software solutions, and managing databases.

Источник

Оцените статью
Adblock
detector