Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the method of mounting Ubuntu iSO system image

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "what is the method of mounting the image of the Ubuntu iSO system". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Next let the editor to take you to learn "what is the method of mounting Ubuntu iSO system image"!

Ubuntu iSO mount

A Ubuntu iSO image is a cd or DVD image file that can be stored on your computer and can be used to write to a new CD. It is easy to mount and use it under Ubuntu iSO.

User's guide

The default Ubuntu iSO mount point under linux is located in the "/ media" directory. Here is how to mount a Ubuntu iSO file:

Sudo mkdir / media/cdimage # create a folder as the Ubuntu iSO mount point

Sudo mount-o loop myfile.iso / media/cdimage # Mount the Ubuntu iSO file, using the parameter-o loop

Use the Ubuntu iSO file you want to mount instead of myfile.iso.

To mount an image file so that it can be written, use the following command:

Sudo mkdir / media/cdimage

Sudo mount-o rw,loop myfile.iso / media/cdimage

Uninstall the image file:

Sudo umount / media/cdimage

Rmdir / media/cdimage

Other formats

Other CD,DVD image files can be converted into Ubuntu iSO files to be mounted

Nero image (.nrg) files can be converted to iSO files using nrg2iso, or mounted using mount

Use mount to mount:

Sudo mkdir / media/cdimage

Sudo mount-o loop,offset=307200 myfile.nrg / media/cdimage

Install nrg2iso:

Sudo apt-get install nrg2iso

Convert to an iso file using nrg2iso:

Nrg2iso myfile.nrg myfile.iso

Cue/Bin image (.cue / .bin) must be converted before it can be used. It can be converted using bchunk.

Install bchunk: sudo apt-get install bchunk

Transform using bchunk: bchunk myfile.bin myfile.cue myfile

Clone CD (.ccd / .img / .sub) files must be converted. This can be done using ccd2iso. The package for this program is extremely unstable and has been taken from the Ubuntu forums http://www.Ubuntuforums.org. It is also only packaged for Pentium (i386) systems. You can also compile from the source using the guide on ManageDiscImages.

Clone CD (.ccd / .img / .sub) files must be converted before they can be used. You can use ccd2iso to convert. The software installation package is included in extremely unstable (unstable version) and is adopted by the Ubuntu Forum (http://www.Ubuntuforums.org). It is also the only software package for Pentium (i386) systems. You can also refer to the guide on the ManageDiscImages help page to compile the software using source code.

Download and install ccd2iso at http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb

Install the software: sudo dpkg-I ccd2iso_0.2-0.1_i386.deb

Transform using ccd2iso: ccd2iso myfile.img myfile.iso

Alcohol 120% image (.MDF) files can be converted to ISO files using mdf2iso or mounted using mount. Use mount to mount:

Sudo mkdir / media/cdimage

Sudo mount-o loop=/dev/loop0 myfile.iso / media/cdimage

Install mdf2iso: sudo apt-get install mdf2iso

Transform using mdf2iso: mdf2iso myfile.mdf myfile.iso

For other problems with image format files, please refer to the help page ManageDiscImages.

At this point, I believe that everyone on the "Ubuntu iSO system image mount method is what" have a deeper understanding, might as well to the actual operation of it! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report