|
有谁知道mkisofs得用法啊????
想了一下n in 1在linux下应该用一个shell就可以搞定的
有空可以写一个试试
另外找了一些关于启动光盘的文章
发信人: cybergene (活泼的基因), 信区: Linux
标 题: 如何制作ISO文件
发信站: BBS 水木清华站 (Fri Dec 24 09:42:02 1999)
在Mandrake主页上看见的,应该是普遍适用的吧。
How to create a iso image ?
#mirror from ftp the oxygen/ directory preserving permissions and
symlinks
cd /mnt/disk
lftp -c 'open ftp.somewhere.org; cd some/dir/oxygen; mirror'
# Do a little prep to get the boot images to the start of the disk
mkdir -p /tmp/r
mv /mnt/disk/images /tmp/r
mkisofs -R \
-o /output/dir/oxygen.iso \
-b images/gi_cdrom.img \
-c images/.catalog \
/tmp/r \
/mnt/disk
--
Windows: 32 bit extensions and a graphical shell for a 16 bit patch to
an 8 bit operating system originally coded for a 4 bit microprocessor,
written by a 2 bit company, that can't stand 1 bit of competition.
Welcome to DNA Studio: http://dnastudio.dhs.org
new software, navupdate, wallpapers, mp3z, linux, forums......
※ 来源:·BBS 水木清华站 smth.org·[FROM: 202.112.85.250]
发信人: ttao (苦乐生涯), 信区: Linux
标 题: Re: 请问 .iso文件的刻盘问题
发信站: BBS 水木清华站 (Mon Dec 6 13:43:14 1999)
ok! 搞定了,现在可以直接光盘启动安装了.就是这个.给闹的,
改过来就好了,正确的命令应该是:
#mkisofs -r -v -T -J -V "Extreme_RedHat5.0" -b images/boot.img
-c misc/boot/boot.cat /tmp/exRedhat.iso .
^^^当前所在的目录,在用这个命令的时候
就是存放extreme_linux的目录.
【 在 ttao (苦乐生涯) 的大作中提到: 】
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^//faint,这个地方应该是 .
: 它要用相对路径,比较两种方法的iso,大小差了30k,
: 等明天cd-wirter试一试,这是刻的第三张盘.
--
※ 来源:·BBS 水木清华站 bbs.net.tsinghua.edu.cn·[FROM: 210.73.88.195]
发信人: ClearMind (自由战士流血不止战斗不息永不言弃), 信区: Linux
标 题: 多启动映象光盘制作(简方)
发信站: BBS 水木清华站 (Thu Oct 11 18:18:43 2001)
老早就想做这样的东西了.还特意问过suzhe.看了n多的文档还是没有找到
答案,原来那个时候的mkisofs根本就不支持.当然了,要是在Windows下面
我也用不着那么费劲了.最近制作Trustix Secure Linux,把安装盘和源码
盘二合一还只是3xxM,一张650M的光盘就这么浪费实在不忍心,所以就想方
设法合并LinuxCare Rescure Toolkit啊,SmoothWall啊什么的.这样一张
光盘可以存在多个可安装系统.于是又重新考虑multi bootimage这些事情.
根据 google.com的搜索结果,终于找到了.返回来一看mkisofs,原来
最新的mkisofs已经支持了.hiahia....真是爽毙了.经过n次CDRW的擦写
测试安装,确定完全可行啊.把基本命令整理一下,先扔出来,旨在抛子弹
引导弹.以后再慢慢完善吧.
光盘基本刻录支持和基本命令
==========================
1. mkisofs的使用
mkisofs -b images/boot.img -c boot.cat -J -r -T \
-p "光盘标识号" -P "光盘制作人" -A "长光盘标识号" -V "短光盘标识号" \
. -o 光盘映象ISO
2. cdrecord刻录
cdrecord -v -dev=刻录机设备 -speed=刻录速度 -eject -fs=4m -data 光盘映象ISO
3. 多启动光盘映象光盘(multi-boot-image bootable CDROM)的制作
mkisofs -J -r -T -R -relaxed-filenames -c boot.cat \
-p "光盘标识号" -P "光盘制作人" -A "长光盘标识号" -V "短光盘标识号" \
-b image1.img -eltorito-alt-boot \
-b image2.img -eltorito-alt-boot \
-b image3.img -eltorito-alt-boot \
-b image4.img -eltorito-alt-boot \
-hide-rr-moved -max-iso9660-filenames \
-o 光盘映象ISO 光盘内容目录/
--
知禅之味,护以善念,乃得超脱。
没有寄托,没有归宿,无尽痛苦。
悲欢离合,不断重复,真实生活。
无欲无求,无内无外,无他无我。
儒道佛医,无量天尊,阿弥陀佛。
哈哈哈哈,笑开天地,自由穿梭!
※ 来源:·BBS 水木清华站 smth.org·[FROM: 210.74.191.34]
|
|