个人工具

UbuntuHelp:ManageDiscImages/zh

来自Ubuntu中文

Fideas讨论 | 贡献2007年5月30日 (三) 00:25的版本 (新页面: {{From|https://help.ubuntu.com/community/ManageDiscImages}} {{Languages|UbuntuHelp:ManageDiscImages}} {{Translation}} {{Translator|雕啸长空}} == 将CloneCD格式转换为ISO格式 ==...)

(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳转至: 导航, 搜索

将CloneCD格式转换为ISO格式

安装必要的软件

Download the latest version from ccd2iso homepage

extract the archive files

tar xvfz ccd2iso-x.x.tar.gz

enter the new directory

cd ccd2iso

You need aclocal-1.6, therefore we have to install automake1.6

sudo apt-get install automake1.6

configure and compile it

./configure
make

install it

sudo make install

or to install it via a deb file (CheckInstall)

sudo make checkinstall

软件的使用

Normally you would have 3 file from CloneCD image, they are .ccd, .img, and .sub

general usage:

ccd2iso <.img filename> <.iso filename>

for example:

ccd2iso myimage.img myimage.iso

将BIN/CUE格式转换为ISO格式

软件安装

sudo apt-get install bchunk

软件使用

As the name implies, a BIN/CUE CD image has two files. BIN being a binary of the raw CD data, and CUE being an ASCII file of CD layout.

general usage:

bchunk <image.bin> <image.cue> <basename>

for example:

bchunk myimage.bin myimage.cue myimage

Where basename(myimage) is myimage.iso of the produced file.

将DMG格式文件转换为ISO格式

Installation

Download the latest version from here and move the perl script for example into the directory: /usr/local/bin/

sudo mv dmg2iso.pl /usr/local/bin/

软件使用

dmg2iso.pl <filename.dmg> <filename.iso>

示例

dmg2iso.pl disc1.dmg disc1.iso

加载ISO镜像文件

Create the directory for mount point:

sudo mkdir –p /mnt/iso

Use mount command as follows (assumes that your ISO file name is disk1.iso):

sudo mount -o loop disk1.iso /mnt/iso

Now your ISO is mounted on /mnt/iso/