如果有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...
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\...
首先需要使用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...
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 这样就可以通过 “添加 /删除 程序...
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...
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
今天想搭个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 ...
我按照如下方式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的光盘镜像文件?
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...
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这样就可以通过 “添加 /删除 程序”...