博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux iso 挂载_在Linux上挂载ISO映像
阅读量:2509 次
发布时间:2019-05-11

本文共 1300 字,大约阅读时间需要 4 分钟。

linux iso 挂载

linux iso 挂载

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

本页将说明如何在Linux中使用ISO映像文件。

Contents

[]

内容

[ ]

必备模块 (Prerequisite Module)

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

您必须先确保已加载循环模块,然后才能使用此功能。

sudo modprobe loop

挂载CD ISO映像 (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.

就像使用普通驱动器一样,我们将使用常规mount命令将ISO映像装入文件夹。 区别在于,我们传递-o loop命令来指定可以处理ISO映像的循环模块。

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.

当然,您应该确保提前创建了/ media / iso文件夹。

挂载DVD ISO映像 (Mount a DVD ISO Image)

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

装入DVD的ISO映像时,可能必须使用UDF类型而不是ISO。

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

在Gnome中挂载ISO映像 (Mount an ISO Image in Gnome)

todo: Explain how to use the gnome scripts to mount images.

待办事项:说明如何使用gnome脚本来装载映像。

无需挂载即可打开ISO映像 (Open an ISO Image Without Mounting)

todo: Explain how you’ll be able to open the file without actually mounting it.

待办事项:说明如何在不实际安装的情况下打开文件。

翻译自:

linux iso 挂载

转载地址:http://noywd.baihongyu.com/

你可能感兴趣的文章
dp、sp 、 px之间的相互转化的工具类
查看>>
资源推荐 五个常用MySQL图形化管理工具
查看>>
使用WebService与Oracle EBS进行集成
查看>>
Know How And When To Use System.Message_Level To Control Messages In Oracle Forms
查看>>
python 常用库
查看>>
EBS R12.1安装中文补丁包BUG:FAILED: file XLIFFLoader.class on worker [X]
查看>>
类变量
查看>>
git 常用命令总结
查看>>
luogu3769 【模板】AC自动机(加强版)
查看>>
ubuntu Apache安装设置
查看>>
UINavigationController导航栏的隐藏和显示(转)
查看>>
curl 常用命令
查看>>
为啥用ip不可以访问知乎,而百度却可以?
查看>>
Winform 根据Point截图并保存到指定路径
查看>>
HDU 6038.Function-数学+思维 (2017 Multi-University Training Contest - Team 1 1006)
查看>>
Tornado-第一篇-搭建网页
查看>>
Python +appium+pycharm(Windows)
查看>>
DSO windowed optimization 代码 (2)
查看>>
1047 Student List for Course (25)
查看>>
JS 数组克隆方法总结
查看>>