How to install iso file under linux system?

青灯夜游
Release: 2019-05-23 18:57:56
Original
17337 people have browsed it

How to install iso file under linux system?

#How to install iso file under Linux system?

Installation steps:

1. Create the corresponding iso folder, such as iso, in the /mnt directory.

2. Run the following command to mount the iso file

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

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

After successfully installing the ISO image, change the installation 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
Copy after login

You will see the file list of the ISO image we installed in the above command. For example, the 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
Copy after login

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

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

The above is the detailed content of How to install iso file under linux system?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template