Linux基础之mkisofs
时间:2014-07-14 17:59:06
收藏:0
阅读:300
本章将mkisofs整理记录
[root@www ~]# mkisofs [-o 映像档] [-rv] [-m file] 待备份文件.. [-V vol] \ > -graft-point isodir=systemdir ... 选顷不参数: -o :后面接你想要产生的那个映像档档名。 -r :透过 Rock Ridge 产生支持 Unix/Linux 的档案数据,可记录较多的信息; -v :显示建置 ISO 档案的过程
-m file :-m 为排除档案 (exclude) 的意思,后面的档案不备份到映像档中
-V vol :建立 Volume,有点像 Windows 在档案总管内看到癿的CD title 的东
西
-graft-point:graft有转嫁或移植的意思
eg: [root@www ~]# mkisofs -r -V ‘linux_file‘ -o /tmp/system.img \ > -m /home/lost+found -graft-point /root=/root /home=/home /etc=/etc
评论(0)