特殊:Badtitle/NS100:MountIso:修订间差异
小 新页面: {{From|https://help.ubuntu.com/community/MountIso}} {{Languages|UbuntuHelp:MountIso}} == Mounting ISO Files == === Introduction === An IsoImage is an image of a CD or DVD disk that ca... |
小无编辑摘要 |
||
第1行: | 第1行: | ||
{{From|https://help.ubuntu.com/community/MountIso}} | {{From|https://help.ubuntu.com/community/MountIso}} | ||
{{Languages|UbuntuHelp:MountIso}} | {{Languages|UbuntuHelp:MountIso}} | ||
== Mounting ISO Files == | == Mounting ISO Files == | ||
=== Introduction === | === Introduction === | ||
An IsoImage is an image of a CD or DVD disk that can be stored on your computer and used to write to a new disk. It is a simple process to mount an iso image under Ubuntu. | An IsoImage is an image of a CD or DVD disk that can be stored on your computer and used to write to a new disk. It is a simple process to mount an iso image under Ubuntu. | ||
=== Instructions === | === Instructions === | ||
The default mount point under linux is under ''/media''. To mount an iso file here do the following: | The default mount point under linux is under ''/media''. To mount an iso file here do the following: | ||
<pre><nowiki> | <pre><nowiki> | ||
sudo mkdir /media/cdimage | sudo mkdir /media/cdimage | ||
sudo mount -o loop myfile.iso /media/cdimage | sudo mount -o loop myfile.iso /media/cdimage | ||
</nowiki></pre> | </nowiki></pre> | ||
Where myfile.iso is replaced with the file you want to mount. | Where myfile.iso is replaced with the file you want to mount. | ||
To mount the image so that it can be written to do the following instead: | To mount the image so that it can be written to do the following instead: | ||
<pre><nowiki> | <pre><nowiki> | ||
sudo mkdir /media/cdimage | sudo mkdir /media/cdimage | ||
sudo mount -o rw,loop myfile.iso /media/cdimage | sudo mount -o rw,loop myfile.iso /media/cdimage | ||
</nowiki></pre> | </nowiki></pre> | ||
To unmount the image do this: | To unmount the image do this: | ||
<pre><nowiki> | <pre><nowiki> | ||
sudo umount /media/cdimage | sudo umount /media/cdimage | ||
rmdir /media/cdimage | rmdir /media/cdimage | ||
</nowiki></pre> | </nowiki></pre> | ||
=== Other Formats === | === Other Formats === | ||
Other formats of CD or DVD images can be converted to iso and then mounted as above. | Other formats of CD or DVD images can be converted to iso and then mounted as above. | ||
* Nero image (.nrg) files can either be converted to iso using '''nrg2iso''' or mounted directly using '''mount'''. | * Nero image (.nrg) files can either be converted to iso using '''nrg2iso''' or mounted directly using '''mount'''. | ||
** To mount using '''mount''': | ** To mount using '''mount''': | ||
第45行: | 第29行: | ||
sudo mount -o loop,offset=307200 myfile.nrg /media/cdimage | sudo mount -o loop,offset=307200 myfile.nrg /media/cdimage | ||
</nowiki></pre> | </nowiki></pre> | ||
* To install '''nrg2iso''': | |||
<pre><nowiki> | <pre><nowiki> | ||
sudo apt-get install nrg2iso | sudo apt-get install nrg2iso | ||
</nowiki></pre> | </nowiki></pre> | ||
* To convert to iso using '''nrg2iso''': | |||
<pre><nowiki> | <pre><nowiki> | ||
nrg2iso myfile.nrg myfile.iso | nrg2iso myfile.nrg myfile.iso | ||
</nowiki></pre> | </nowiki></pre> | ||
* Cue/Bin image (.cue/.bin) files must be converted. This can be done using '''bchunk'''. | * Cue/Bin image (.cue/.bin) files must be converted. This can be done using '''bchunk'''. | ||
** To install '''bchunk''': | ** To install '''bchunk''': | ||
第59行: | 第42行: | ||
sudo apt-get install bchunk | sudo apt-get install bchunk | ||
</nowiki></pre> | </nowiki></pre> | ||
* To convert to iso using '''bchunk''': | |||
<pre><nowiki> | <pre><nowiki> | ||
bchunk myfile.bin myfile.cue myfile | bchunk myfile.bin myfile.cue myfile | ||
</nowiki></pre> | </nowiki></pre> | ||
* 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. 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. | ||
** To install '''ccd2iso''' download the package http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb. Then install the package: | ** To install '''ccd2iso''' download the package http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb. Then install the package: | ||
第69行: | 第51行: | ||
sudo dpkg -i ccd2iso_0.2-0.1_i386.deb | sudo dpkg -i ccd2iso_0.2-0.1_i386.deb | ||
</nowiki></pre> | </nowiki></pre> | ||
* To convert to iso using '''ccd2iso''' | |||
<pre><nowiki> | <pre><nowiki> | ||
ccd2iso myfile.img myfile.iso | ccd2iso myfile.img myfile.iso | ||
</nowiki></pre> | </nowiki></pre> | ||
* Alcohol 120% image (.mdf) files can either be converted to iso using '''mdf2iso''' or mounted directly using '''mount'''. | * Alcohol 120% image (.mdf) files can either be converted to iso using '''mdf2iso''' or mounted directly using '''mount'''. | ||
** To mount using '''mount''': | ** To mount using '''mount''': | ||
第80行: | 第61行: | ||
sudo mount -o loop=/dev/loop0 myfile.iso /media/cdimage | sudo mount -o loop=/dev/loop0 myfile.iso /media/cdimage | ||
</nowiki></pre> | </nowiki></pre> | ||
* To install '''mdf2iso''': | |||
<pre><nowiki> | <pre><nowiki> | ||
sudo apt-get install mdf2iso | sudo apt-get install mdf2iso | ||
</nowiki></pre> | </nowiki></pre> | ||
* To convert to iso using '''mdf2iso''': | |||
<pre><nowiki> | <pre><nowiki> | ||
mdf2iso myfile.mdf myfile.iso | mdf2iso myfile.mdf myfile.iso | ||
</nowiki></pre> | </nowiki></pre> | ||
* A couple of other image formats can be found on the help page ManageDiscImages. | * A couple of other image formats can be found on the help page ManageDiscImages. | ||
=== Other Options === | === Other Options === | ||
'''cdemu''' is a kernel module for mounting Cue/Bin files directly. To install it you would have to install linux-headers, compile the module and modprobe it. This is out of the scope of this page. There is a script under development in the Ubuntu forums for automating the building of '''cdemu''' http://www.ubuntuforums.org/showthread.php?t=149963. (Use this at your own risk.) | '''cdemu''' is a kernel module for mounting Cue/Bin files directly. To install it you would have to install linux-headers, compile the module and modprobe it. This is out of the scope of this page. There is a script under development in the Ubuntu forums for automating the building of '''cdemu''' http://www.ubuntuforums.org/showthread.php?t=149963. (Use this at your own risk.) | ||
[http://www.debianadmin.com/mount-and-unmout-iso-images-without-burning-them.html "Mount and Unmount ISO images without burning them"] has a nice step-by-step explaination (with screenshots) showing how to mount an unmount ISO images. | [http://www.debianadmin.com/mount-and-unmout-iso-images-without-burning-them.html "Mount and Unmount ISO images without burning them"] has a nice step-by-step explaination (with screenshots) showing how to mount an unmount ISO images. | ||
---- | ---- | ||
[[category:CategoryDocumentation]] [[category:CategoryCleanup]] | [[category:CategoryDocumentation]] [[category:CategoryCleanup]] | ||
[[category:UbuntuHelp]] | [[category:UbuntuHelp]] |
2007年11月30日 (五) 20:21的版本
文章出处: |
{{#if: | {{{2}}} | https://help.ubuntu.com/community/MountIso }} |
点击翻译: |
English {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/af | • {{#if: UbuntuHelp:MountIso|Afrikaans| [[::MountIso/af|Afrikaans]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ar | • {{#if: UbuntuHelp:MountIso|العربية| [[::MountIso/ar|العربية]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/az | • {{#if: UbuntuHelp:MountIso|azərbaycanca| [[::MountIso/az|azərbaycanca]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/bcc | • {{#if: UbuntuHelp:MountIso|جهلسری بلوچی| [[::MountIso/bcc|جهلسری بلوچی]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/bg | • {{#if: UbuntuHelp:MountIso|български| [[::MountIso/bg|български]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/br | • {{#if: UbuntuHelp:MountIso|brezhoneg| [[::MountIso/br|brezhoneg]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ca | • {{#if: UbuntuHelp:MountIso|català| [[::MountIso/ca|català]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/cs | • {{#if: UbuntuHelp:MountIso|čeština| [[::MountIso/cs|čeština]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/de | • {{#if: UbuntuHelp:MountIso|Deutsch| [[::MountIso/de|Deutsch]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/el | • {{#if: UbuntuHelp:MountIso|Ελληνικά| [[::MountIso/el|Ελληνικά]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/es | • {{#if: UbuntuHelp:MountIso|español| [[::MountIso/es|español]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/fa | • {{#if: UbuntuHelp:MountIso|فارسی| [[::MountIso/fa|فارسی]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/fi | • {{#if: UbuntuHelp:MountIso|suomi| [[::MountIso/fi|suomi]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/fr | • {{#if: UbuntuHelp:MountIso|français| [[::MountIso/fr|français]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/gu | • {{#if: UbuntuHelp:MountIso|ગુજરાતી| [[::MountIso/gu|ગુજરાતી]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/he | • {{#if: UbuntuHelp:MountIso|עברית| [[::MountIso/he|עברית]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/hu | • {{#if: UbuntuHelp:MountIso|magyar| [[::MountIso/hu|magyar]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/id | • {{#if: UbuntuHelp:MountIso|Bahasa Indonesia| [[::MountIso/id|Bahasa Indonesia]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/it | • {{#if: UbuntuHelp:MountIso|italiano| [[::MountIso/it|italiano]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ja | • {{#if: UbuntuHelp:MountIso|日本語| [[::MountIso/ja|日本語]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ko | • {{#if: UbuntuHelp:MountIso|한국어| [[::MountIso/ko|한국어]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ksh | • {{#if: UbuntuHelp:MountIso|Ripoarisch| [[::MountIso/ksh|Ripoarisch]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/mr | • {{#if: UbuntuHelp:MountIso|मराठी| [[::MountIso/mr|मराठी]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ms | • {{#if: UbuntuHelp:MountIso|Bahasa Melayu| [[::MountIso/ms|Bahasa Melayu]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/nl | • {{#if: UbuntuHelp:MountIso|Nederlands| [[::MountIso/nl|Nederlands]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/no | • {{#if: UbuntuHelp:MountIso|norsk| [[::MountIso/no|norsk]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/oc | • {{#if: UbuntuHelp:MountIso|occitan| [[::MountIso/oc|occitan]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/pl | • {{#if: UbuntuHelp:MountIso|polski| [[::MountIso/pl|polski]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/pt | • {{#if: UbuntuHelp:MountIso|português| [[::MountIso/pt|português]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ro | • {{#if: UbuntuHelp:MountIso|română| [[::MountIso/ro|română]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/ru | • {{#if: UbuntuHelp:MountIso|русский| [[::MountIso/ru|русский]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/si | • {{#if: UbuntuHelp:MountIso|සිංහල| [[::MountIso/si|සිංහල]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/sq | • {{#if: UbuntuHelp:MountIso|shqip| [[::MountIso/sq|shqip]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/sr | • {{#if: UbuntuHelp:MountIso|српски / srpski| [[::MountIso/sr|српски / srpski]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/sv | • {{#if: UbuntuHelp:MountIso|svenska| [[::MountIso/sv|svenska]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/th | • {{#if: UbuntuHelp:MountIso|ไทย| [[::MountIso/th|ไทย]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/tr | • {{#if: UbuntuHelp:MountIso|Türkçe| [[::MountIso/tr|Türkçe]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/vi | • {{#if: UbuntuHelp:MountIso|Tiếng Việt| [[::MountIso/vi|Tiếng Việt]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/yue | • {{#if: UbuntuHelp:MountIso|粵語| [[::MountIso/yue|粵語]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/zh | • {{#if: UbuntuHelp:MountIso|中文| [[::MountIso/zh|中文]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/zh-hans | • {{#if: UbuntuHelp:MountIso|中文(简体)| [[::MountIso/zh-hans|中文(简体)]]}}|}} {{#ifexist: {{#if: UbuntuHelp:MountIso | UbuntuHelp:MountIso | {{#if: | :}}MountIso}}/zh-hant | • {{#if: UbuntuHelp:MountIso|中文(繁體)| [[::MountIso/zh-hant|中文(繁體)]]}}|}} |
{{#ifeq:UbuntuHelp:MountIso|:MountIso|请不要直接编辑翻译本页,本页将定期与来源同步。}} |
{{#ifexist: :MountIso/zh | | {{#ifexist: MountIso/zh | | {{#ifeq: {{#titleparts:MountIso|1|-1|}} | zh | | }} }} }} {{#ifeq: {{#titleparts:MountIso|1|-1|}} | zh | | }}
Mounting ISO Files
Introduction
An IsoImage is an image of a CD or DVD disk that can be stored on your computer and used to write to a new disk. It is a simple process to mount an iso image under Ubuntu.
Instructions
The default mount point under linux is under /media. To mount an iso file here do the following:
sudo mkdir /media/cdimage sudo mount -o loop myfile.iso /media/cdimage
Where myfile.iso is replaced with the file you want to mount. To mount the image so that it can be written to do the following instead:
sudo mkdir /media/cdimage sudo mount -o rw,loop myfile.iso /media/cdimage
To unmount the image do this:
sudo umount /media/cdimage rmdir /media/cdimage
Other Formats
Other formats of CD or DVD images can be converted to iso and then mounted as above.
- Nero image (.nrg) files can either be converted to iso using nrg2iso or mounted directly using mount.
- To mount using mount:
sudo mkdir /media/cdimage sudo mount -o loop,offset=307200 myfile.nrg /media/cdimage
- To install nrg2iso:
sudo apt-get install nrg2iso
- To convert to iso using nrg2iso:
nrg2iso myfile.nrg myfile.iso
- Cue/Bin image (.cue/.bin) files must be converted. This can be done using bchunk.
- To install bchunk:
sudo apt-get install bchunk
- To convert to iso 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.
- To install ccd2iso download the package http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb. Then install the package:
sudo dpkg -i ccd2iso_0.2-0.1_i386.deb
- To convert to iso using ccd2iso
ccd2iso myfile.img myfile.iso
- Alcohol 120% image (.mdf) files can either be converted to iso using mdf2iso or mounted directly using mount.
- To mount using mount:
sudo mkdir /media/cdimage sudo mount -o loop=/dev/loop0 myfile.iso /media/cdimage
- To install mdf2iso:
sudo apt-get install mdf2iso
- To convert to iso using mdf2iso:
mdf2iso myfile.mdf myfile.iso
- A couple of other image formats can be found on the help page ManageDiscImages.
Other Options
cdemu is a kernel module for mounting Cue/Bin files directly. To install it you would have to install linux-headers, compile the module and modprobe it. This is out of the scope of this page. There is a script under development in the Ubuntu forums for automating the building of cdemu http://www.ubuntuforums.org/showthread.php?t=149963. (Use this at your own risk.) "Mount and Unmount ISO images without burning them" has a nice step-by-step explaination (with screenshots) showing how to mount an unmount ISO images.