Mounting image files linux

How can I mount a disk image?

I have a disk image myimage.disk which contains the partition table and a primary partition (i.e. a FAT32 filesystem). Think that as a USB pen image. I want to mount the primary partition to a local directory. I know how to mount a partition image using the loop utils but here I have disk image. My guess is that I have to mount the image «skipping» the partition table but how can I do that?

See also superuser.com/questions/117136/… You may want to use simply losetup —partscan —find —show disk.img followed by mount /dev/loop0p1 /mnt/disk

5 Answers 5

The kpartx tool makes this easier. It creates loop devices in /dev/mapper for each partition in your image. Then you can mount the loop device that corresponds with your desired partition without having to calculate the offset manually.

For example, to mount the first partition of the disk image:

kpartx -a -v myimage.disk mount /dev/mapper/loop0p1 /mnt/myimage 

When you’re done with the image, remove the loop devices:

umount /mnt/myimage kpartx -d -v myimage.disk 

Alternatively, if you have a recent kernel, and pass loop.max_part=63 on boot (if loop is built-in) or to modprobe (if loop is a module), then you can do it this way:

losetup /dev/loop0 myimage.disk partprobe /dev/loop0 # Re-read partition table if /dev/loop0 was used with a different image before mount /dev/loop0p1 /mnt/myimage 

When you’re done with the loop:

Источник

Как монтировать образы дисков для просмотра и редактирования файлов (РЕШЕНО)

Как просмотреть информации об образах для монтирования. Как определить файловую систему образа

С помощью команды file можно анализировать, какая файловая система используется в файлах, являющихся образами дисков.

Пример проверки файла test.image:

/mnt/disk_d/test.image: ISO 9660 CD-ROM filesystem data 'ARCH_202010' (bootable)

Пример анализа образа disk.ntfs:

/mnt/disk_d/disk.ntfs: DOS/MBR boot sector, code offset 0x52+2, OEM-ID "NTFS ", sectors/cluster 8, Media descriptor 0xf8, sectors/track 63, heads 255, dos < 4.0 BootSector (0x0), FAT (1Y bit by descriptor); NTFS, sectors/track 63, physical drive 0x80, sectors 15654911, $MFT start cluster 786432, $MFTMirror start cluster 2, bytes/RecordSegment 2^(-1*246), clusters/index block 1, serial number 06258074758071a05; contains bootstrap BOOTMGR

Как можно убедиться, это образ с файловой системой NTFS.

Проверка образа rootfs.sfs:

/mnt/disk_d/rootfs.sfs: Squashfs filesystem, little endian, version 4.0, zstd compressed, 625010200 bytes, 58466 inodes, blocksize: 262144 bytes, created: Sat Jun 6 08:14:32 2020

Это образ с файловой системой Squashfs.

Анализ образа ext3-img-kw-1.dd:

file /mnt/disk_d/ext3-img-kw-1.dd
/mnt/disk_d/ext3-img-kw-1.dd: Linux rev 1.0 ext3 filesystem data, UUID=e2307119-024a-427f-bd74-dbe8a95687a6, volume name "KW_SEARCH"

Это образ с файловой системой ext3.

Чтобы выполнять команды по монтированию файлов-образов, вы можете создать образы, например, сделав клон флешки примерно следующим образом:

sudo dd if=/dev/sdc of=/mnt/disk_d/disk.ntfs

В этой команде утилита dd считывает содержимое диска /dev/sdc и сохраняет его в файл /mnt/disk_d/disk.ntfs. Помните, что программа dd считывает не файлы, а байты со всего диска. Поэтому получаемый образ по размеру будет равен диску (разделу) с которого он был сделан, независимо от заполненности этого диска. То есть если флешка размером 8 Гигабайт и на ней ничего не записано, то всё равно получится образ размером 8 Гигабайт.

Читайте также:  Клонирование жестких дисков линукс

Вы также можете перейти на страницу http://dftt.sourceforge.net/ - на ней есть ссылки на уроки, с которых вы можете скачать образы самых разных файловых систем.

Как смонтировать файл образа диска (раздела)

Общий вид команды монтирования файлов образов следующий:

mount ОПЦИИ ОБРАЗ ДИРЕКТОРИЯ
  • ОПЦИИ — опции утилиты mount или опции монтирования
  • ОБРАЗ — файл с образом диска
  • ДИРЕКТОРИЯ — папка, где будут доступны файлы со смонтированного устройства

По сути, синтаксис монтирования образов с помощью mount отличается от монтирования диска тем, что вместо УСТРОЙСТВА указывается путь до ОБРАЗА. ОПЦИИ указывать необязательно, тип файловой системы будет определён автоматически.

К примеру, нужно смонтировать образ диска disk.ntfs, расположенный по пути /mnt/disk_d/disk.ntfs.

Начнём с создания временной точки монтирования в /tmp:

Монтируем образ /mnt/disk_d/disk.ntf в папку /tmp/disk:

sudo mount /mnt/disk_d/disk.ntfs /tmp/disk

Просмотрим содержимое образа disk.ntfs:

Мы можем видеть файлы, размещённые в образе disk.ntfs, их можно открывать и копировать.

Некоторые файловые системы (например, ISO образы) доступны только для чтения. Но в данном случае мы можем записать любые изменения в папку /tmp/disk и они сохраняться в файле disk.ntfs даже после размонтирования и повторного монтирования диска disk.ntfs.

Для размонтирования образа можно использовать любую из команд:

sudo umount /ПУТЬ/ДО/ОБРАЗА sudo umount /ТОЧКА/МОНТИРОВАНИЯ/

Пример просмотра содержимого образов с помощью монтирования

Для практики, возьмём установочный образ дистрибутива Linux. Они интересны тем, что там может быть сразу несколько файлов образов с разными файловыми системами. Для примера посмотрим содержимое установочного диска Manjaro.

Создадим папку для монтирования:

У меня установочный диск расположен по пути /mnt/disk_d/Share/manjaro-kde-20.0.3-200606-linux56.iso, а монтировать я его буду в /tmp/iso, тогда команда следующая:

sudo mount /mnt/disk_d/Share/manjaro-kde-20.0.3-200606-linux56.iso /tmp/iso

Получено следующее сообщение:

mount: /tmp/iso: WARNING: source write-protected, mounted read-only.

Оно означает, что монтирование было выполнено, но источник защищён от записи, поэтому монтирование выполнено с правами только чтение. Помните, что последующие монтирования файлов с этого образа могут быть формально доступны для записи, но поскольку начальное хранилище открыто только для чтения, то любые сделанные изменения не сохранятся.

Посмотрим содержимое установочного диска:

Там среди прочего есть файл efi.img, проверим, какая у него файловая система:

/tmp/iso/efi.img: DOS/MBR boot sector, code offset 0x3c+2, OEM-ID "mkfs.fat", sectors/cluster 4, root entries 512, sectors 8192 (volumes 

Мы можем посмотреть содержимое этого файла. Создадим точку монтирования для него

И смонтируем файл /tmp/iso/efi.img в папку /tmp/efi:

sudo mount /tmp/iso/efi.img /tmp/efi

Теперь нам доступно содержимое этого файла:

Вернёмся к нашему смонтированному ISO образу и посмотрим содержимое папки manjaro/x86_64/:

Крошечные файлы с расширением .md5 это просто контрольные суммы. Но файлы desktopfs.sfs, livefs.sfs, mhwdfs.sfs и rootfs.sfs интереснее. Они содержат основные файлы, необходимые для работы LIVE образа и установки дистрибутива Linux.

Мы можем посмотреть содержимое любого из этих файлов. Допустим, нас интересует desktopfs.sfs.

Создаём для него новую временную точку монтирования:

И монтируем файл /tmp/iso/manjaro/x86_64/desktopfs.sfs в папку /tmp/desktopfs:

sudo mount /tmp/iso/manjaro/x86_64/desktopfs.sfs /tmp/desktopfs

Смотрим содержимое файла desktopfs.sfs:

Вы можете самостоятельно смонтировать и изучить содержимое других образов .sfs на этом установочном диске. Либо для самостоятельных упражнений вы можете скачать установочный диск Linux Mint. Там образ файловой системы расположен в файле casper/filesystem.squashfs.

Что касается установочного диска Kali Linux, то там сопроводители дистрибутива не стали использовать образы, а просто разместили файлы внутри iso9660, то есть его не так интересно исследовать.

Связанные статьи:

Источник

How to Mount ISO Images Files in Linux

This article will list a few methods using which you can mount ISO image files in Linux. After mounting these ISO image files, you will be able to browse their contents and copy / extract data from the mount point to your local file system.

Mount Command

The mount command, as the name suggests, allows you to mount a variety of filesystems. Once you mount a ISO image filesystem using the mount command, you will be able to explore its content using a graphical file manager or command line. To mount an ISO image file, use the following two commands in succession:

Replace “file.iso” with the name of your own ISO image file. You can change “mountpoint” to any other name. It represents the name of the folder where the ISO image filesystem will be mounted. In this case, a new folder is created in the home directory. On certain Linux distributions, you may have to prefix “mount” command with “sudo” to run the command as root.

To check if the ISO image file has been successfully mounted or not, you can run the following command:

If the command above returns a list of files and directories, then you can safely assume that the ISO image filesystem has been successfully mounted. You can now copy contents from the mount point to your local filesystem. Do note that most of the time, this mounted filesystem may be in read-only mode. If you want to modify the contents of the ISO image file, you may have to remove the write-protection mechanism and may have to use some external tools to repackage the ISO image file.

To unmount the mount point created in previous command, use the command specified below:

You may have to run it with “sudo” depending on configuration of your Linux distribution. It is highly recommended that you manually unmount the mount point once your work is done to avoid file corruption.

You can know more about “mount” command by running these two commands in a terminal:

Mount / Extract Using Archive Managers

File managers in almost all major Linux distributions come with an integrated plugin for extracting and managing compressed archives. You can use these archive managers to mount or extract content from ISO image files.

If for some reason your file manager doesn’t have a dedicated archive manager plugin, you can install such archive managers in your Linux distributions by searching for “archive manager”, “file roller”, “archivemount” and “engrampa” terms in the package manager. Once these packages are installed, just right click on an ISO image file and click on the menu entry that allows you to explore the archive.

Depending on the archive manager plugin you are using, the ISO image filesystem may be mounted or it may be opened in the archive manager GUI window. Once mounted, a new filesystem entry should appear in the sidebar of your file manager. Just click on the sidebar entry to explore its content. When your work is done, unmount it manually to avoid file corruption.

GNOME Disks

GNOME Disks or GNOME Disk Utility is a comprehensive utility for managing storage devices, local filesystems, partitions and disk image files. You can use it to mount an ISO image file and browse its contents. To install GNOME Disks in Ubuntu, use the command specified below:

You can install GNOME Disks from the package manager in other Linux distributions. Source code is available here.

You can follow two approaches to mount an ISO image file using GNOME Disks. After installing GNOME Disks, a new right click menu entry called “Disk Image Mounter” may appear in your file manager. Just click on the menu entry to mount the ISO image file.

If the right click entry doesn’t appear in your file manager, launch “Disks” application from the main application menu and click on the “Attach Disk Image” menu option to mount your desired ISO image file.

Once mounted, the newly created mount point should automatically appear in the GNOME Disks and your file manager.

P7zip-full

P7zip-full is an open source implementation of “7z” file format and archive management utility. You can use it to extract contents of an ISO image file.

To install P7zip-full in Ubuntu, use the command specified below:

You can install P7zip-full from the package manager in other Linux distributions. Additional packages and source code is available here.

Once installed, run the following command to extract content from an ISO image file (replace “file.iso” with your desired filename):

You can know more about “7z” command by running these two commands in a terminal:

Depending on the file manager you are using, you may get a new menu entry in the right click menu to extract the ISO archive.

Conclusion

These are some of the ways you can mount ISO image files in your Linux distribution. Some Linux distributions come with a dedicated, pre-installed utility for mounting and burning CD / DVD disks. You can also use these applications to explore the data contained in an ISO image file.

About the author

Nitesh Kumar

I am a freelancer software developer and content writer who loves Linux, open source software and the free software community.

Источник

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