Home>Article>Operation and Maintenance> How to open iso file in linux
You can use the mount command to open the iso file.
Execute the following command in the terminal:
mount -o loop /mnt/*/1.iso /mnt/cdrom
(where * is the path where your tool disk is placed).
Then, open my computer——>open the CD-ROM and you can see the files inside.
(Recommended tutorial:linux tutorial)
When prompted for charudi two CDs, type the command
umount /mnt/cdrom
and then type the command
mount -o loop /mnt/*/2.iso/mnt/cdrom
(Change the 1 in the file name of the first command to 2, which is the name of the second CD). Enter again like this. Just wait.
Use the command to cancel the mount:
umount /mnt/cdrom
Recommended related video tutorials:linux video tutorial
The above is the detailed content of How to open iso file in linux. For more information, please follow other related articles on the PHP Chinese website!