Logo
  • Ubuntu
  • CentOS
  • Debian
  • Fedora
  • RedHat

How to Mount ISO File on Linux - DesignLinux

Sep 10 2020
designlinux 0 Comments
How to Mount ISO File on Linux

An ISO file is an archive file. It contains the complete image of a CD or DVD. Typically, most operating systems like macOS, Linux and Windows are provided as ISO image. This tutorial explains how to mount ISO file on Linux.

Mount ISO Files using the Command Line#

You can attach the ISO files at a particular mount point in the directory tree using the mount command:

Perform the following steps to mount ISO file on any Linux distribution, like Ubuntu, Debian, and CentOS.

Step 1 – Create Mount Point#

At first, you should create a mount point. You can choose any location which you want:

sudo mkdir /media/iso

Step 2 – Mount ISO File#

Use the mount command to mount the ISO file to the mount point:

sudo mount /path/filename.iso /media/iso -o loop

In above command the -o loop option tells the command to map a loop device to the specified ISO file and mount that device on the mount point.

Also you should replace /path/filename.iso with your path of your ISO file.

Step 3 – View Content#

You can view the content of an ISO file using ls command:

ls /media/iso

You can also open a file manager to view the ISO contents.

Step 4 – Unmount ISO#

If you want to unmount the ISO file, you should use unmount command followed by the directory where the image has been mounted.

sudo umount /media/iso

The unmount command will fail to unmount if the file system in use.

Mount ISO Files using Gnome#

If you are running a Linux distribution that uses Gnome as the desktop environment, you can mount an ISO file using the Gnome’s disk image mounter application.

If you system uses Gnome as the desktop environment, Gnome’s disk image mounter application allows you to mount an ISO file.

Right click on the ISO file that you want to mount. In the menu, click on the “Open With Disk Image Mounter” Option.

You should appear a device icon on the desktop after the image is mounted. You can now open it by double clicking on it and Gnome file manager will open up.

It’s also simple to unmount the ISO file, just right click on the device icon and select “Unmount”.

Conclusion#

This article explained multiple ways to mount an ISO file with command line and graphical tool Gnome.

If you have any question or feedback, leave a comment below.

Related

Tags: mount, terminal

How to Install VLC Media Player on Ubuntu 20.04

Prev Post

Install Linux from USB Device or Boot into Live Mode Using Unetbootin and dd Command

Next Post
Archives
  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • July 2022
  • June 2022
  • April 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • March 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
Categories
  • AlmaLinux
  • Android
  • Ansible
  • Apache
  • Arch Linux
  • AWS
  • Backups
  • Bash Shell
  • Bodhi Linux
  • CentOS
  • CentOS Stream
  • Chef
  • Cloud Software
  • CMS
  • Commandline Tools
  • Control Panels
  • CouchDB
  • Data Recovery Tools
  • Databases
  • Debian
  • Deepin Linux
  • Desktops
  • Development Tools
  • Docker
  • Download Managers
  • Drupal
  • Editors
  • Elementary OS
  • Encryption Tools
  • Fedora
  • Firewalls
  • FreeBSD
  • FTP
  • GIMP
  • Git
  • Hadoop
  • HAProxy
  • Java
  • Jenkins
  • Joomla
  • Kali Linux
  • KDE
  • Kubernetes
  • KVM
  • Laravel
  • Let's Encrypt
  • LFCA
  • Linux Certifications
  • Linux Commands
  • Linux Desktop
  • Linux Distros
  • Linux IDE
  • Linux Mint
  • Linux Talks
  • Lubuntu
  • LXC
  • Mail Server
  • Manjaro
  • MariaDB
  • MongoDB
  • Monitoring Tools
  • MySQL
  • Network
  • Networking Commands
  • NFS
  • Nginx
  • Nodejs
  • NTP
  • Open Source
  • OpenSUSE
  • Oracle Linux
  • Package Managers
  • Pentoo
  • PHP
  • Podman
  • Postfix Mail Server
  • PostgreSQL
  • Python
  • Questions
  • RedHat
  • Redis Server
  • Rocky Linux
  • Security
  • Shell Scripting
  • SQLite
  • SSH
  • Storage
  • Suse
  • Terminals
  • Text Editors
  • Top Tools
  • Torrent Clients
  • Tutorial
  • Ubuntu
  • Udemy Courses
  • Uncategorized
  • VirtualBox
  • Virtualization
  • VMware
  • VPN
  • VSCode Editor
  • Web Browsers
  • Web Design
  • Web Hosting
  • Web Servers
  • Webmin
  • Windows
  • Windows Subsystem
  • WordPress
  • Zabbix
  • Zentyal
  • Zorin OS
Visits
  • 0
  • 72
  • 605,822

DesignLinux.com © All rights reserved

Go to mobile version