Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • 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
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • 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
  • PowerShell
  • Linux

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

February 23, 2024 LinuxQuestions and Answers

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
previous post
Deploying Third Party Software Updates with WSUS
next post
Find a Linux Process Listening on a Specific Port

Related Reading

Configure NTP Time Source for Active Directory Domain

May 6, 2025

How to Cancel Windows Update Pending Restart Loop

May 6, 2025

View Windows Update History with PowerShell (CMD)

April 30, 2025

Remove ‘Your License isn’t Genuine’ Banner in MS...

April 21, 2025

Uninstalling Windows Updates via CMD/PowerShell

April 18, 2025

Leave a Comment Cancel Reply

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

Categories

  • Active Directory
  • Group Policies
  • Exchange Server
  • Microsoft 365
  • Azure
  • Windows 11
  • Windows 10
  • Windows Server 2022
  • Windows Server 2019
  • Windows Server 2016
  • PowerShell
  • VMware
  • Hyper-V
  • Linux
  • MS Office

Recent Posts

  • 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
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025
  • How to Write Logs to the Windows Event Viewer from PowerShell/CMD

    March 3, 2025
  • How to Hide (Block) a Specific Windows Update

    February 25, 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)
  • Get Started with Docker on Windows (WSL2) without Docker Desktop
  • Adding Trusted Root Certificates on Linux
Footer Logo

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


Back To Top