个人工具

“UbuntuHelp:MountIso/zh”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
其它格式
其它格式
第60行: 第60行:
  
 
* 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:  
+
  克隆CD (.ccd/.img/.sub)文件必须转换才能使用。可以使用'''ccd2iso'''来转换。
 +
** 下载并安装'''ccd2iso''' ,下载地址
 +
http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb. 安装该软件:  
 
<pre><nowiki>
 
<pre><nowiki>
 
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'''  
+
** 使用'''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) 文件可以使用'''mdf2iso''' 转换成ISO文件或者使用mount挂载。
** To mount using '''mount''':  
+
** 使用'''mount'''挂载:  
 
<pre><nowiki>
 
<pre><nowiki>
 
sudo mkdir /media/cdimage
 
sudo mkdir /media/cdimage
 
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''':  
+
** 安装'''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''':  
+
** 使用'''mdf2iso'''转换:  
 
<pre><nowiki>
 
<pre><nowiki>
 
mdf2iso myfile.mdf myfile.iso
 
mdf2iso myfile.mdf myfile.iso

2007年6月12日 (二) 21:59的版本


挂载ISO文件

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

在linux下默认的ISO挂载点位于"/media"目录,下面是挂载一个ISO文件的方法:

sudo mkdir /media/cdimage  #建立一个文件夹作为ISO挂载点
sudo mount -o loop myfile.iso /media/cdimage   #挂载ISO文件,使用参数 -o loop 

使用你想挂载的iso文件代替myfile.iso。 挂载一个镜像文件使之能被写入,使用下面的命令:

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

卸载镜像文件:

sudo umount /media/cdimage
rmdir /media/cdimage

其它格式

其它的CD,DVD镜像文件能被转换成ISO文件以被挂载

  • Nero 镜像(.nrg)文件能使用 nrg2iso 转换成ISO文件,或者使用mount挂载
    • 使用mount挂载:
sudo mkdir /media/cdimage
sudo mount -o loop,offset=307200 myfile.nrg /media/cdimage
    • 安装nrg2iso:
sudo apt-get install nrg2iso
    • 使用nrg2iso转换成iso文件:
nrg2iso myfile.nrg myfile.iso
  • Cue/Bin 镜像 (.cue/.bin) 必须转换才能使用. 使用bchunk可以转换.
    • 安装bchunk:
sudo apt-get install bchunk
    • 使用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.
  克隆CD (.ccd/.img/.sub)文件必须转换才能使用。可以使用ccd2iso来转换。
    • 下载并安装ccd2iso ,下载地址

http://rarewares.org/debian/packages/unstable/ccd2iso_0.2-0.1_i386.deb. 安装该软件:

sudo dpkg -i ccd2iso_0.2-0.1_i386.deb
    • 使用ccd2iso 转换:
ccd2iso myfile.img myfile.iso
  • Alcohol 120% image (.mdf) 文件可以使用mdf2iso 转换成ISO文件或者使用mount挂载。
    • 使用mount挂载:
sudo mkdir /media/cdimage
sudo mount -o loop=/dev/loop0 myfile.iso /media/cdimage
    • 安装mdf2iso:
sudo apt-get install mdf2iso
    • 使用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.