在 HELiOS Linux 上挂载 USB
我想通过命令行在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下命令将在 /mnt 上的 /dev/sda1 处安装具有 fat32 文件系统的 USB 设备。
如果您不知道磁盘的设备名称,请在将磁盘连接到 USB 端口后运行此命令。
这将显示设备名称。就像它在我的电脑中显示
[589.289070] sdc: sdc1
一样。那么设备名称将为/dev/sdc1
。/mnt
目录一直都在那里。以下命令将挂载 iso。
查看iso中的内容。
Following command will mount USB device at /dev/sda1 on /mnt which has fat32 file system.
If you dont know the device name of the disk run this command just after attaching it to USB port.
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.
See the contents in the iso.