gpt4 book ai didi

Cygwin 相当于 Linux/dev/sda、/dev/sdb 等

转载 作者:行者123 更新时间:2023-12-01 07:06:38 25 4
gpt4 key购买 nike

在 Linux 上,我可以以/dev/sdX 的形式访问硬盘驱动器。这会忽略任何分区表、文件系统等,而只是逐块访问驱动器。 Cygwin 中的等价物是什么?我已经搜索过谷歌,但找不到任何有效的东西。

我希望能够(例如)使用类似的东西创建闪存驱动器的图像

dd if=/dev/??? of=image.bin

我知道有 Windows 程序可以读取和写入硬盘驱动器镜像。 dd 命令只是一个说明性的例子。我不是在创建驱动器镜像之后。我在设备名称之后。

最佳答案

在 Cygwin 只是 复制和过去 以下," 作为一个长条目 "然后 按回车

for F in /dev/s* ; do echo "$F    $(cygpath -w $F)" ; done

这应该能够通过将shebang与上面的文本一起添加到文件的开头来作为脚本运行

您的输出应类似于以下内容
PB-2@PB-2 ~
$ for F in /dev/s* ; do echo "$F $(cygpath -w $F)" ; done
/dev/scd0 \\.\E:
/dev/scd1 \\.\F:
/dev/sda \\.\Disk{dc9927e0-d232-e04c-2c75-77f787df605d}
/dev/sda1 \\.\Volume{1200e263-fc48-458c-a1d6-115b385b372c}
/dev/sda2 \\.\HarddiskVolume2
/dev/sda3 \\.\STORAGE#Volume#{7c54accc-b533-11e6-9cce-806e6f6e6963}#0000000025900000#{7f108a28-9833-4b3b-b780-2c6b5fa5c062}
/dev/sda4 \\.\C:
/dev/sda5 \\.\Volume{c3553ab1-e8a5-4d7b-a324-544b32fe3d3e}
/dev/sdb \\.\Disk{ff7e8c9f-7aa2-1f15-8d02-d126ff13dfb5}
/dev/sdb1 \\.\D:
/dev/sdc \\.\Disk{07352cef-974b-9296-720f-70f1ae015a85}
/dev/sdc1 \\.\G:
/dev/shm C:\cygwin64\dev\shm
/dev/sr0 \\.\E:
/dev/sr1 \\.\F:
/dev/stderr /dev/pty0
/dev/stdin /dev/pty0
/dev/stdout /proc/3888/fd/pipe:[94489288360]

PB-2@PB-2 ~
$

我花了几个小时搜索才找到这个所以我很高兴分享它。

如果然后想知道相应的 Cygpaths

只需输入
mount

并且输出应该类似于以下内容
PB-2@PB-2 ~
$ mount
C:/cygwin64/bin on /usr/bin type ntfs (binary,auto)
C:/cygwin64/lib on /usr/lib type ntfs (binary,auto)
C:/cygwin64 on / type ntfs (binary,auto)
C: on /cygdrive/c type ntfs (binary,posix=0,user,noumount,auto)
D: on /cygdrive/d type ntfs (binary,posix=0,user,noumount,auto)
E: on /cygdrive/e type udf (binary,posix=0,user,noumount,auto)
F: on /cygdrive/f type iso9660 (binary,posix=0,user,noumount,auto)
G: on /cygdrive/g type exfat (binary,posix=0,user,noumount,auto)

PB-2@PB-2 ~
$

关于Cygwin 相当于 Linux/dev/sda、/dev/sdb 等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34584660/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com