Windows OS Hub
  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows 10
    • Windows Server 2025
    • Windows Server 2022
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
    • Proxmox
  • PowerShell
  • Linux

 Windows OS Hub / Linux / Steps to Mount an ISO Image File on Linux

February 23, 2024

Steps to Mount an ISO Image File on Linux

ISO is a popular file format to store optic disk images having the ISO 9660 file system. Today the ISO format is typically used to distribute installation images of various apps. Every system administrator has installation images of Windows, Linux, VMware, other operating systems, and various apps. Let’s see how to mount an ISO image and access its files.

Create a mount point for your ISO image:

$ sudo mkdir /media/iso

Mount the ISO file to your mount point:

$ sudo mount /mnt/hgfs/Distr/VMware-VMvisor.iso /media/iso -t iso9660 -o loop

  • -t – this optional argument allows to specify the file system type;
  • ISO 9660 – a CD/DVD file system;
  • -o loop – Mount the image as a loopback device, allowing you to work with the image file in the same way as with a normal block device.

Once you have successfully mounted the ISO image, you can access its files. Display a list of files in the ISO:

$ ls /media/iso

Mount ISO image file command in Linux

The ISO image is mounted read-only and you cannot modify its files.

You can copy files from ISO to your computer:

$ sudo cp -r /mnt/iso /home/user/Documents

Unmount the ISO:

$ sudo umount /media/iso

You can also use the Ubuntu GUI to mount the ISO file. For example, if you use a Gnome desktop environment, right-click the ISO file, file and select Open With Disk Image Mounter.

Ubuntu: ISO Image Mount tool

In the right pane, you will see an image device icon, click it to see the list of files in the ISO file.

To unmount the ISO, click the device icon and select Unmount.

dismount ISO image on Linux Ubuntu

How to mount an ISO image file on Windows?
0 comment
0
Facebook Twitter Google + Pinterest
LinuxQuestions and Answers
previous post
Deploying Third Party Software Updates with WSUS
next post
Find a Linux Process Listening on a Specific Port

Related Reading

Fixing ‘The Network Path Was Not Found’ 0x80070035...

August 31, 2023

Recovering Files from BitLocker Encrypted Drive

March 13, 2024

Get Started with Docker on Windows (WSL2) without...

September 4, 2024

Turn Linux Computer into Wi-Fi Access Point (Hotspot)

March 11, 2024

How to Use Ansible to Manage Windows Machines

March 12, 2024

How to Increase Size of Disk Partition in...

March 11, 2024

Printing from Linux to a Windows Shared Printer

May 29, 2024

Install Any OS from ISO Image over Network...

June 24, 2024

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Encrypt Any Client-Server App Traffic on Windows with Stunnel

    June 12, 2025
  • Failed to Open the Group Policy Object on a Computer

    June 2, 2025
  • Remote Desktop Printing with RD Easy Print Redirection

    June 2, 2025
  • Disable the Lock Screen Widgets in Windows 11

    May 26, 2025
  • Configuring Windows Protected Print Mode (WPP)

    May 19, 2025
  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Fixing ‘The Network Path Was Not Found’ 0x80070035 Error Code on Windows
  • Recovering Files from BitLocker Encrypted Drive
  • Install Any OS from ISO Image over Network with iVentoy
  • Monitoring Domain Name Expiration Date with Zabbix
  • Turn Linux Computer into Wi-Fi Access Point (Hotspot)
  • Printing from Linux to a Windows Shared Printer
  • Get Started with Docker on Windows (WSL2) without Docker Desktop
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top