How to install iso file in Linux system

How to install iso file in Linux system

How to install iso files under Linux system?

Installation steps:

1. In the /mnt directory, create a corresponding iso folder, such as iso.

2. Run the following command to mount the iso file

mount -o loop /home/tecmint/Fedora-18-i386-DVD.iso /mnt/iso

Note: /home/tecmint/Fedora-18-i386-DVD.iso is the path name of the iso file

After successfully mounting the ISO image, change the mounted directory to /mnt/iso and list the contents of the ISO image. It can only be mounted in read-only mode, so no files can be modified.

cd /mnt/iso

ls -l

You will see a list of files of the ISO image that we mounted in the above command. For example, a directory listing for the Fedora-18-i386-DVD.iso image would look like this.

total 16

drwxrwsr-x 3 root 101737 2048 Jan 10 01:00 images

drwxrwsr-x 2 root 101737 2048 Jan 10 01:00 isolinux

drwxrwsr-x 2 root 101737 2048 Jan 10 01:00 LiveOS

drwxrwsr-x 28 root 101737 4096 Jan 10 00:38 Packages

drwxrwsr-x 2 root 101737 4096 Jan 10 00:43 repodata

-r--r--r-- 1 root root 1538 Jan 10 01:00 TRANS.TBL

3. At this point, there are corresponding installation files in the /mnt/iso directory. Next, you can install the software through these installation files.

Note: The above operations are performed after su root and require root privileges.

You may also be interested in:
  • How to use the "DD" command in Linux/OSX to create an ISO image operating system installation USB disk
  • Detailed explanation of Supervisor installation and configuration (Linux/Unix process management tool)
  • Creating ISO files under Linux
  • Linux burning, configuration, and building Edison environment
  • How to edit ISO files in Linux
  • PHP programmers play Linux series using supervisor to implement daemon process

<<:  JavaScript to show and hide images

>>:  How to solve the error when connecting to MySQL in Linux: Access denied for user 'root'@'localhost'(using password: YES)

Recommend

Summary of learning HTML tags and basic elements

1. Elements and tags in HTML <br />An eleme...

Sharing of experience on repairing MySQL innodb exceptions

A set of MySQL libraries for testing. The previou...

Docker image export, import and copy example analysis

The first solution is to push the image to a publ...

Introduction to HTML Chinese Character Encoding Standard

In HTML, you need to specify the encoding used by...

Detailed tutorial on installing and configuring MySQL 5.7.20 under Centos7

1. Download the MySQL 5.7 installation package fr...

HTML markup language - table tag

Click here to return to the 123WORDPRESS.COM HTML ...

How to use Antd's Form component in React to implement form functions

1. Construction components 1. A form must contain...

Press Enter to automatically submit the form. Unexpected discovery

Copy code The code is as follows: <!DOCTYPE ht...

Quickly master how to get started with Vuex state management in Vue3.0

Vuex is a state management pattern developed spec...

Basic operations on invisible columns in MySQL 8.0

Table of contents 01 Create invisible columns 02 ...

Docker starts Redis and sets the password

Redis uses the apline (Alps) image of Redis versi...

Use of Vue filters and custom instructions

Table of contents Filters 01.What is 02. How to d...