个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
软件的使用
第1行: 第1行:
 +
{{Translation}}
 
{{From|https://help.ubuntu.com/community/ManageDiscImages}}
 
{{From|https://help.ubuntu.com/community/ManageDiscImages}}
 
{{Languages|UbuntuHelp:ManageDiscImages}}
 
{{Languages|UbuntuHelp:ManageDiscImages}}
{{Translation}}
 
 
{{Translator|雕啸长空}}
 
{{Translator|雕啸长空}}
  

2007年5月30日 (三) 00:36的版本

将CloneCD格式转换为ISO格式

安装软件

ccd2iso 官方网站下载该软件的最新版本

解压得到的软件源码

tar xvfz ccd2iso-x.x.tar.gz

进入解压得到的源码所在目录

cd ccd2iso

该软件的安装需要用到aclocal-1.6, 所以我们需要先安装automake1.6或者更新的版本

sudo apt-get install automake1.6

配置并编译

./configure
make

安装

sudo make install

或者将它打包成deb格式再进行安装 (CheckInstall,但这样打出来的包尽量不要提供给他人使用,因为无法解决依赖关系)

sudo make checkinstall

软件的使用

一般对这种格式的镜像文件进行转换,你需要有三个文件: .ccd, .img, 和 .sub后缀的三个文件

常规操作:

ccd2iso <.img filename> <.iso filename>

例如:

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/