Advertisement
Guest User

Untitled

a guest
Mar 24th, 2021
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. root@chicago:/etc# lsblk -o name,uuid,mountpoint
  2. NAME UUID MOUNTPOINT
  3. nvme0n1
  4. ├─nvme0n1p1 4077-2FEC /boot/efi
  5. ├─nvme0n1p2 8c1139d8-3281-440e-988a-531c56eac5a5 /boot
  6. └─nvme0n1p3 e36eb81f-047f-4f0c-8d0e-72d5bf8b0d5a
  7. └─nvme0n1p3_crypt 90abTE-VMj9-Uiru-1TgH-2QMq-l2Zn-qpH1Tj
  8. ├─chicago--vg-root 5886f571-75e6-40f3-b09e-adac91429093 /
  9. └─chicago--vg-swap_1 65b40703-e73c-41c9-b1e1-411989e68bae [SWAP]
  10.  
  11.  
  12. root@chicago:/etc# cat /etc/fstab
  13. # /etc/fstab: static file system information.
  14. #
  15. # Use 'blkid' to print the universally unique identifier for a
  16. # device; this may be used with UUID= as a more robust way to name devices
  17. # that works even if disks are added and removed. See fstab(5).
  18. #
  19. # systemd generates mount units based on this file, see systemd.mount(5).
  20. # Please run 'systemctl daemon-reload' after making changes here.
  21. #
  22. # <file system> <mount point> <type> <options> <dump> <pass>
  23. /dev/mapper/chicago--vg-root / ext4 errors=remount-ro 0 1
  24. # /boot was on /dev/nvme0n1p2 during installation
  25. UUID=8c1139d8-3281-440e-988a-531c56eac5a5 /boot ext2 defaults 0 2
  26. # /boot/efi was on /dev/nvme0n1p1 during installation
  27. UUID=4077-2FEC /boot/efi vfat umask=0077 0 1
  28. /dev/mapper/chicago--vg-swap_1 none swap sw 0 0
  29.  
  30.  
  31. ####
  32. root@chicago:/etc# cat /etc/crypttab
  33. nvme0n1p3_crypt UUID=e36eb81f-047f-4f0c-8d0e-72d5bf8b0d5a none luks,discard
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement