How to mount iso image in linux
Mounting an iso image is very simple and this simple tutorials explains you how to mount an iso image under a directory in linux. An ISO image is an archive file of an optical disc. ISO images can be created from compact disc , certain collection of files and directories by using ISO image creating softwares. The software bootable disc are avail in ISO images. the extension of the image is .iso .
Now i will explain you how to mount an iso image under a directory. Here i am having an image file ” centos.iso ” and i like to mount this image file under /mnt/image
You need login as super user ( root user ) to mount the file system. To login as root user, follow the below command
$ su -
Now create a directory under /mnt to mount the iso file.
# mkdir /mnt/media -p
Mount the iso file
# mount -o loop ~/Downloads/centos.iso /mnt/media
Check the mounted files now
# ls -l /mnt/media/
How to remove the mounted iso image
umount is the command used to remove the mounted image or mounted directories. The following will remove the mounted media.
# umount /mnt/media
Related articles
- How to change the Apache HTTP port number
- Apache HTTP Server installation from source code in linux
- XBMC – Free Media Player for Linux, OSX and Windows
- How to check the Video and Audio File properties – Media Information
- How to change hostname in linux
- How to install OpenVPN on various linux distro
- Glipper , Parcellite – Best clipboard utilities for linux
- How to compile C Program in Linux
- How to install and configure apache server from source
- Get linux OS details – Kernel version, distribution version, name, architecture, codename, release
Advertisement
Follow us on Twitter
Follow us on GooglePlus
Find us on Facebook
Recent Posts
- Easy method to install Skype in CentOS 6.3, RHEL – 6.3
- Easy method to recover linux root password
- Easy method to install KDE in ubuntu 12.04
- How to disable selinux
- Change selinux to permissive
- How to check selinux status
- Get website details
- How to install nginx in ubuntu
- How to install nginx in RHEL 5
- How to install nginx in RHEL 6
- How to install nginx in centos 5
- Get linux OS details – Kernel version, distribution version, name, architecture, codename, release
- Service start, stop, restart – nginx in centos
- How to change nginx port number
- How to install nginx on centos 6
- Rsync command with ssh port number
- File creation date and time in linux
- How to install Java in ubuntu linux
- How to install Oracle Java JDK in ubuntu
- How to set password for website
- Plesk – MySQL admin login – password
- How to install and configure PHPMyAdmin from source code in CentOS / RHEL / Fedora linux
- How to find out mysql uptime
- How to backup and restore mysql database
- How to recover mysql root password
- How to connect Mobile Broadband in the ubuntu linux
- Easy method to update bootloader in linux
- Webcam software for linux
- Check memory usage in linux
- How to find out CPU utilization in linux
