TL;DR:mount -e <device>
做什么?
概述
通过 ssh,mount
我需要维护的软件正在发送命令。两次,mount 命令使用一个-e
选项。我不知道这-e
是为了什么,也找不到足够好的答案。
细节
就我而言,执行此操作的过程名为“验证备份操作系统”,通过 ssh 发送的命令如下:
mount -e /dev/hd0; umount -f /dev/hd0t177.1; mount -e /dev/hd0; mount -tqnx6 /dev/hd0t177.1 /BackupPartition
之后,该软件似乎会在 /BackupPartition 中进行搜索,所以我认为这就是过程名称的“验证”部分发挥作用的地方。
人输出
如果我这样做man mount
,则命令和 for 的文本-e
是:
Usage: mount [-abwruv] -t type [-o options] [special] mntpoint
mount [-abwruv] -T type [-o options] special [mntpoint]
mount [-abwruv] -e [-t|T type] [-o options] special [mntpoint]
mount
…
-e Enumerate the device given by special
产品文档
在mount 的 QNX 页面上,它有-e Enumerate the children of the special device.
根据描述,它似乎以mount -e
某种方式枚举了设备。我原以为这意味着“将一些数据打印到标准输出”,但在这种情况下这没有多大意义,因为输出对软件用户不可见,也没有通过管道传输或重定向到任何地方,我手动尝试了命令在命令行上,它没有产生任何输出,也没有任何迹象表明发生了任何事情。
做什么mount -e <device>
?
您是否还阅读了 qnx man mount 上的示例?
使用您的 ssh 命令是有道理的。我了解的不多。