如何在Linux操作系统下创建ISO镜像文件

浏览:30日期:2022-07-30
;1、用dd命令#dd if=/dev/cdrom of=/***/目的文件.iso上面的命令是在将光盘作成iso文件2、用mkisofs 命令#mkisofs -r -J -V 卷标名 -o 目的文件.iso 源文件上面的命令是将 “源文件” 文件及目录作成 “目的文件.iso”。例子 :# mkisofs -r -J -V widebright -o widebright.iso /widebright在linux系统上建了一个iso文件,然后放到windows xp上,结果winrar能够正确解压,使用DAEMON Tools 作为虚拟光盘加载之后,也很正常。

NAMEmkisofs - create an hybrid ISO9660/JOLIET/HFS filesystemwith optional Rock Ridge attributes.SYNOPSISmkisofs [ options ] [ -o filename ] pathspec [pathspec...]注:-J Generate Joliet directory records in addition to regular iso9660 file names.主要是为了兼容windows系统。卷标名——指所做成iso文件后插入虚拟光盘时所显示的名字。-R Generate SUSP and RR records using the Rock Ridgeprotocol to further describe the files on the iso9660 filesystem.-r This is like the -R option, but file ownership andmodes are set to more useful values.The uid andgid are set to zero, because they are usually onlyuseful on the author's system, and not useful tothe client.All the file read bits are set true,so that files and directories are globally readableon the client.If any execute bit is set for afile, set all of the execute bits, so that executa­bles are globally executable on the client. If anysearch bit is set for a directory, set all of thesearch bits, so that directories are globallysearchable on the client.All write bits arecleared, because the CD-Rom will be mounted read-only in any case.If any of the special mode bitsare set, clear them, because file locks are notuseful on a read-only file system, and set-id bitsare not desirable for uid 0 or gid 0. When used onWin32, the execute bit is set on all files. This isa result of the lack of file permissions on Win32and the Cygwin POSIX emulation layer.See also-uid -gid, -dir-mode, -file-mode and -new-dir-mode.

更多的选项可以用 man mkisofs 查看。

标签: Linux系统
相关文章: