Chinaunix首页 | 论坛 | 博客
  • 博客访问: 817511
  • 博文数量: 581
  • 博客积分: 7803
  • 博客等级: 少将
  • 技术积分: 3653
  • 用 户 组: 普通用户
  • 注册时间: 2007-04-27 08:21
文章分类

全部博文(581)

文章存档

2013年(7)

2012年(414)

2011年(159)

2009年(1)

分类: LINUX

2011-11-01 06:42:53


This page will explain how you can use ISO image files in Linux.

Contents
Prerequisite Module

You'll have to make sure that the loop module is loaded before you can use this feature.

sudo modprobe loop Mount a CD ISO Image

We'll use the regular mount command to mount the ISO image into a folder, just like you would do with a regular drive. The difference is that we pass the -o loop command to specify the loop module, which can handle ISO images.

sudo mount filename.iso /media/iso -t iso9660 -o loop

Of course you should make sure that you have created the /media/iso folder ahead of time.

Mount a DVD ISO Image

When mounting ISO images of DVDs, you might have to use the UDF type instead of ISO.

sudo mount filename.iso /media/iso -t udf -o loop

use the fstab:
/mandrakedvd.iso /mnt/mandrake iso9660 loop,ro,auto 0 0
阅读(610) | 评论(0) | 转发(0) |
0

上一篇:LaTeX 参考文献的处理

下一篇:device-mapper

给主人留下些什么吧!~~