日本免费全黄少妇一区二区三区-高清无码一区二区三区四区-欧美中文字幕日韩在线观看-国产福利诱惑在线网站-国产中文字幕一区在线-亚洲欧美精品日韩一区-久久国产精品国产精品国产-国产精久久久久久一区二区三区-欧美亚洲国产精品久久久久

如何在Linux操作系統(tǒng)下創(chuàng)建ISO鏡像文件

;1、用dd命令

#dd if=/dev/cdrom of=/***/目的文件.iso
上面的命令是在將光盤作成iso文件

2、用mkisofs 命令
#mkisofs -r -J -V 卷標(biāo)名 -o 目的文件.iso 源文件
上面的命令是將 “源文件” 文件及目錄作成 “目的文件.iso” 。

例子 :
# mkisofs -r -J -V widebright -o widebright.iso /widebright

在linux系統(tǒng)上建了一個iso文件,然后放到windows xp上,結(jié)果winrar能夠正確解壓,使用DAEMON Tools 作為虛擬光盤加載之后,也很正常 。NAME
mkisofs - create an hybrid ISO9660/JOLIET/HFS filesystem
with optional Rock Ridge attributes.

SYNOPSIS
mkisofs [ options ] [ -o filename ] pathspec [pathspec...]

注:
-J Generate Joliet directory records in addition to regular iso9660 file names.
主要是為了兼容windows系統(tǒng) 。
卷標(biāo)名——指所做成iso文件后插入虛擬光盤時所顯示的名字 。

-R Generate SUSP and RR records using the Rock Ridge
protocol to further describe the files on the iso9660 filesystem.

-r This is like the -R option, but file ownership and
modes are set to more useful values.The uid and
gid are set to zero, because they are usually only
useful on the author"s system, and not useful to
the client.All the file read bits are set true,
so that files and directories are globally readable
on the client.If any execute bit is set for a
file, set all of the execute bits, so that executa?BR>bles are globally executable on the client. If any
search bit is set for a directory, set all of the
search bits, so that directories are globally
searchable on the client.All write bits are
cleared, because the CD-Rom will be mounted read-
only in any case.If any of the special mode bits
are set, clear them, because file locks are not
useful on a read-only file system, and set-id bits
are not desirable for uid 0 or gid 0. When used on
Win32, the execute bit is set on all files. This is
a result of the lack of file permissions on Win32
and the Cygwin POSIX emulation layer.See also
-uid -gid, -dir-mode, -file-mode and -new-dir-mode.【如何在Linux操作系統(tǒng)下創(chuàng)建ISO鏡像文件】
更多的選項可以用 man mkisofs 查看 。

    推薦閱讀