List open dm-crypt LUKS volumes

cryptsetupluks

If I mount a simple loop device,

losetup -a

give me the devices opened.
Is something similar possible with cryptsetup?

Best Answer

dmsetup is useful for anything device mapper related. For Example:

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