在 HELiOS Linux 上挂载 USB

发布于 2024-12-28 09:05:26 字数 151 浏览 1 评论 0原文

我想通过命令行在 Linux 操作系统(HELiOS)上安装 USB 驱动器,USB 中有一个 ISO 映像。我想查看 ISO 映像中存在的目录。 USB 的标签/名称是“LIVE”。

有人可以帮助使用命令来挂载并查看 ISO 映像文件的内容吗?

提前致谢

I want to mount the USB drive on the Linux OS(HELiOS) via command line, there is a ISO image present in the USB. I want to see the directories present in the ISO image. Label/Name given to the USB is "LIVE".

Can somebody help with commands to mount and see the contents of the ISO image file.

Thanks in Advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

他是夢罘是命 2025-01-04 09:05:26

以下命令将在 /mnt 上的 /dev/sda1 处安装具有 fat32 文件系统的 USB 设备。

mount -t vfat /dev/sdc1 /mnt

如果您不知道磁盘的设备名称,请在将磁盘连接到 USB 端口后运行此命令。

dmesg  | tail | egrep '[hs]d[a-z]: [hs]d[a-z][0-9]+'

这将显示设备名称。就像它在我的电脑中显示 [589.289070] sdc: sdc1 一样。那么设备名称将为/dev/sdc1/mnt 目录一直都在那里。

以下命令将挂载 iso。

mkdir ~/iso
mount /mnt/isofile.iso ~/iso -o loop

查看iso中的内容。

ls ~/iso

Following command will mount USB device at /dev/sda1 on /mnt which has fat32 file system.

mount -t vfat /dev/sdc1 /mnt

If you dont know the device name of the disk run this command just after attaching it to USB port.

dmesg  | tail | egrep '[hs]d[a-z]: [hs]d[a-z][0-9]+'

This will show you the device name. Like it shows [589.289070] sdc: sdc1 in my pc. Then device name would be /dev/sdc1. /mnt directory is already there all the time.

Following command will mount the iso.

mkdir ~/iso
mount /mnt/isofile.iso ~/iso -o loop

See the contents in the iso.

ls ~/iso
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文