Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. # Check LVM on LUKS status
  2.  
  3. Guide to see whether a device has full disk encryption.
  4.  
  5. Show the main drive device:
  6.  
  7. ```bash
  8. sudo fdisk -l /dev/sda
  9. ```
  10.  
  11. Show the device mapper status:
  12.  
  13. ```bash
  14. sudo dmsetup status
  15. ```
  16.  
  17. Show the cryptsetup for the device mapper volume (should point to /dev/sda):
  18.  
  19. ```bash
  20. sudo cryptsetup status /dev/mapper/volume
  21. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement