列出打开的dm-crypt LUKS卷


18

如果我安装一个简单的循环设备,

losetup -a

给我打开设备。有类似的可能cryptsetup吗?

Answers:


24

dmsetup对于任何与设备映射器相关的操作很有用。例如:

[root@localhost]~# dmsetup ls --target crypt
luks-90dc732d-e183-4948-951e-c32f3f11b305   (253, 0)
[root@localhost]~# 

1
有什么办法列出所有映射及其目标类型?我能管理的最好的是for i in $(sudo dmsetup targets | cut -f1 -d' '); do echo $i:; sudo dmsetup ls --target $i; echo; done
mwfearnley

4
谢谢。获取列表应该不是那么神秘 …… luksList会很好。
bvj

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.