ChinaUnix.net
相关文章推荐:

iso video mount

如果有ISO映像文件,如何直接使用呢?AIX支持直接读取标准的ISO映像 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创建mount点 /iso_dir 4) 用dd命令拷贝该iso images到该LV # dd if=/cdrom/domino.iso of=/dev/iso...

by orian - AIX文档中心 - 2005-07-12 23:27:41 阅读(1907) 回复(0)

相关讨论

Hi folks, Here I got a problem when mounting a iso file. I created the iso file based on a sol 9 cd, with software ultrlIso. The iso file is able to open and explorered by ultrlIso. While after I transferred the iso file on to a unix box and mount it, the problem arised. what I did were as below lofiadm -a /var/tmp/a.iso mount -F hsfs -o ro /dev/lofi/1 /cd While all the contents under /cd b...

by shyjack - Solaris - 2009-06-05 10:17:52 阅读(1919) 回复(4)

Hi folks,\r\n\r\nHere I got a problem when mounting a iso file.\r\n\r\nI created the iso file based on a sol 9 cd, with software ultrlIso. The iso file is able to open and explorered by ultrlIso.\r\n\r\nWhile after I transferred the iso file on to a unix box and mount it, the problem arised.\r\n\r\nwhat I did were as below\r\n\r\nlofiadm -a /var/tmp/a.iso\r\nmount -F hsfs -o ro /dev/lofi/1 /cd\r\...

by shyjack - Solaris - 2009-06-05 10:17:52 阅读(3174) 回复(3)

首先需要使用lofiadm命令把 iso文件映射成块设备,然后mount该设备。 1、lofiadm -a /opt/WPS/debian5/debian-500-i386-DVD-1.iso /dev/lofi/1 2、mount -F hsfs -o ro /dev/lofi/1 /mnt 3、df -k /mnt # df -k /mnt Filesystem kbytes used avail capacity Mounted on /dev/lofi/1 4588206 4588206 0 100% /mnt 4、cd /mnt,就可以做您想做的操作了 5、使用完毕 umount /mnt lofia...

by why_go_linux - Solaris文档中心 - 2009-04-16 12:25:56 阅读(2219) 回复(0)

linux mount ISO 1.一般用以下命令即可 #mount -o loop /***.iso /mnt/cdrom 2.但在添加程序时系统可能提示不能安装,会出现“无法访问磁盘”的提示。 这时要执行以下步骤: 2.1 进入/dev/,删除cdrom,(最好先 #ls -l cdrom,记下当前/dev/cdrom的属性,可能是指向/dev/hda) 2.2 运行 #ln -s /dev/loop7 /dev/cdrom 2.3 运行 #losetup /dev/loop7 /****.iso 2.4 运行 #mount /mnt/cdrom 这样就可以通过 “添加 /删除 程序...

by 4℃華客 - Linux文档专区 - 2008-09-19 11:15:43 阅读(1031) 回复(0)

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)

Linux 下 加载 iso file 的命令: mount -o loop -t iso9660 FILENAME.ISO /mnt/iso umount /mnt/iso 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/24834/showart_520020.html

by nemona - Linux文档专区 - 2008-04-07 14:10:04 阅读(616) 回复(0)

今天想搭个FTP安装环境, ISO文件在BSD下, 想将ISOmount上来看看,结果同REDHAT不同. 某个兄弟找到方法 http://blog.bs2.to/post/EdwardLee/7265 这个是官方介绍的方法: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/disks-virtual.html 原來 FreeBSD 有一個虛擬的 memory disk device(/dev/md*),他有多種用途,其中的 vnode 型態就可以給 iso 檔來用。 但手續上就比較麻煩一點,例如,我們想把 xxx.iso ...

by penny_kan - BSD文档中心 - 2008-01-04 16:08:12 阅读(1382) 回复(0)

我按照如下方式mount iso 光盘镜像文件, mount -o loop -t iso9660 /tmp/1.iso /tmp/888 但是提示 mount: wrong fs type, bad option, bad superblock on /dev/loop0, or too many mounted file systems 请教在linux该如何mount iso的光盘镜像文件?

by weisi - Linux系统管理 - 2007-10-06 16:22:40 阅读(4073) 回复(3)

1. Build a logical volume (the size of an ISO image, better if a little bigger) 2. Create an entry in /etc/filesystem using that logical volume (LV), but setting its Virtual File System (V'S) to be cdrfs 3. Create the mount point for this LV/ISO 4. Copy the ISO image to the LV using dd 5. Mount and work on it like a mounted CD-ROM The entry in /etc/filesystem should look like: /IsoCD: dev = /dev...

by reikywang - AIX文档中心 - 2006-12-12 09:15:02 阅读(1259) 回复(0)

linux mount ISO 1.一般用以下命令即可#mount -o loop /***.iso /mnt/cdrom 2.但在添加程序时系统可能提示不能安装,会出现“无法访问磁盘”的提示。这时要执行以下步骤: 2.1 进入/dev/,删除cdrom,(最好先 #ls -l cdrom,记下当前/dev/cdrom的属性,可能是指向/dev/hda) 2.2 运行 #ln -s /dev/loop7 /dev/cdrom 2.3 运行 #losetup /dev/loop7 /****.iso 2.4 运行 #mount /mnt/cdrom这样就可以通过 “添加 /删除 程序”...

by yjd333 - Linux文档专区 - 2006-07-15 16:08:56 阅读(524) 回复(0)