ChinaUnix.net
相关文章推荐:

aix mount iso

mounting ISO images on AIX There is a known problem with mounting ISO images on the AIX platform. To workaround the problem, complete the following instructions: Obtain the size of the image. For example: # ls -al total 731594 drwxr-xr-x 2 root system 512 Aug 18 11:33 . drwxr-xr-x 6 root system 512 Aug 18 11:32 .. -rw-r--r-- 1 root system 374575104 Apr 29 02...

by huanghaojie - AIX文档中心 - 2008-05-08 17:46:30 阅读(2358) 回复(0)

相关讨论

请问如何在aix上mount一个.iso文件(cdrom的image)

by sakulagi - AIX - 2002-03-01 09:13:26 阅读(3857) 回复(1)

You need to type the following commands: => crfs: Adds a file system. => dd: A raw copy tool for UNIX => chfs: Changes attributes of a file system. => mount: mount a file system => rmfs : Remove a file system First Create a filesystem with crfs command: #/usr/sbin/crfs -v jfs -g rootvg -a size=800 -m/cd1iso -Ano -pro -tno -a frag=4096 -a nbpi=4096 -a ag=8 This command creates the /cd1iso file sys...

by SimonChuiShui - AIX文档中心 - 2009-03-26 17:12:32 阅读(1879) 回复(0)

1、建立一个逻辑卷,大小和ISO image相同或者大些。 2、在/etc/filesystems文件中加入并编辑该逻辑卷条目,设置vfs为cdrfs 例如: # vi /etc/filesystems /isocd: dev = /dev/isocd vfs = cdrfs mount = false options = ro account = false 3) 为该LV创建加载点 /iso_dir 4) 用dd命令拷贝该iso images到该LV # dd if=/cdrom/domino.iso of=/dev/isocd 5) 和mount CD-ROM一样,mount该 # mount /dev/isocd /iso_dir ...

by xiaomao2006 - 存储文档中心 - 2008-07-23 09:37:06 阅读(1596) 回复(0)

1、建立一个文件系统,大小和ISO image相同或者大些。 #crfs -v jfs2 -g datavg -a size=1G -m /iso 2.修改文件系统的属性: #chfs -a vfs=cdrfs /iso #chfs -p ro /iso 3.确定新增加的文件系统的逻辑卷设备名: #lsfs /iso (假设为:/dev/lv01) 4.使用dd命令将iso文件复制到文件系统 #dd if=/data.iso of=/dev/lv01 bs=10M 5.挂载文件系统: #mount -rv cdrfs /dev/lv01 /mnt 6.分析: 在操作系统中访问设备都是通过访问设备文件...

by yangly - AIX文档中心 - 2008-06-04 10:21:47 阅读(1891) 回复(0)

1、建立一个文件系统,大小和ISO image相同或者大些。 #crfs -v jfs2 -g datavg -a size=1G -m /iso 2.修改文件系统的属性: #chfs -a vfs=cdrfs /iso #chfs -p ro /iso 3.确定新增加的文件系统的逻辑卷设备名: #lsfs /iso (假设为:/dev/lv01) 4.使用dd命令将iso文件复制到文件系统 #dd if=/data.iso of=/dev/lv01 bs=10M 5.挂载文件系统: #mount -rv cdrfs /dev/lv01 /mnt 6.分析: 在操作系统中访问设备都是通过访问...

by tomcent_2006 - AIX文档中心 - 2008-05-19 17:07:30 阅读(1688) 回复(0)

谨以此文献给没有刻录机的兄弟 : 用处不大,在实在没有刻录机的时候,可以一用, :) 经测试,在aix4.3.3和aix5.1都可以。 1、建立一个逻辑卷,大小和ISO image相同或者大些。 2、在/etc/filesystems文件中加入并编辑该逻辑卷条目,设置vfs为cdrfs 例如: # vi /etc/filesystems /isocd: dev = /dev/isocd vfs = cdrfs mount = false options = ro account = false 3) 为该LV创建加载点 /...

by zhuys - AIX文档中心 - 2007-10-10 09:54:34 阅读(1279) 回复(0)

#创建一个比iso文件大的文件系统,不要mount # /usr/sbin/crfs -v jfs -g rootvg Megabytes -a size=800 -m/cdiso1 -Ano -pro -tno -a frag=4096 -a nbpi=4096 -a ag=8 #给新文件系统设定裸设备名 # lsfs | grep cdiso1 (假设它叫/dev/lv01) #用dd命令将iso映像拷贝到lv01 # dd if=image.iso of=/dev/rlv01 bs=10M # 修改/etc/filesystems文件的/cdiso部分为vfs=cdrfs and options=ro (read-only) /cd1iso: dev ...

by yangly - AIX文档中心 - 2007-08-10 11:54:31 阅读(1699) 回复(0)

谨以此文献给没有刻录机的兄弟 : 用处不大,在实在没有刻录机的时候,可以一用, :) 经测试,在aix4.3.3和aix5.1都可以。1、建立一个逻辑卷,大小和ISO image相同或者大些。2、在/etc/filesystems文件中加入并编辑该逻辑卷条目,设置vfs为cdrfs例如:# vi /etc/filesystems/isocd: dev = /dev/isocd vfs = cdrfs mount = false options = ro account = false 3) 为该LV创建加载点 /iso_dir4) 用dd命令拷贝...

by cuizip - AIX文档中心 - 2007-04-17 21:18:46 阅读(1312) 回复(0)

请问各位大侠,在AIX上如何mount iso 文件

by icepang - AIX - 2003-11-28 21:35:17 阅读(1153) 回复(1)